/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: #6366f1;
--secondary-color: #8b5cf6;
--accent-color: #ec4899;
--dark-color: #1f2937;
--light-color: #f9fafb;
--text-color: #374151;
--text-light: #6b7280;
--white: #ffffff;
--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--text-color);
overflow-x: hidden;
}

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

/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: var(--shadow-sm);
z-index: 1000;
transition: all 0.3s ease;
}

.navbar.scrolled {
background: rgba(255, 255, 255, 0.98);
box-shadow: var(--shadow-md);
}

.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 20px;
}

.logo {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}

.logo i {
font-size: 1.8rem;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-link {
text-decoration: none;
color: var(--text-color);
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary-color);
transition: width 0.3s ease;
}

.nav-link:hover::after {
width: 100%;
}

.nav-link:hover {
color: var(--primary-color);
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 4px;
}

.hamburger span {
width: 25px;
height: 3px;
background: var(--dark-color);
transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
/* align-items: center; */
/* justify-content: space-between; */
padding: 100px 0px 0px;
/* background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%); */
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
animation: float 20s infinite ease-in-out;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
50% { transform: translate(-50px, 50px) rotate(180deg); }
}

.hero-content {
flex: 1;
max-width: 600px;
z-index: 1;
}

.hero-title {
font-size: 3.5rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 1.5rem;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-subtitle {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2rem;
}

.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.btn {
padding: 0.875rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: inline-block;
border: none;
cursor: pointer;
}

.btn-primary {
background: var(--gradient-1);
color: var(--white);
box-shadow: var(--shadow-md);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

.btn-secondary {
background: var(--white);
color: var(--primary-color);
border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
background: var(--primary-color);
color: var(--white);
}

.hero-image {
flex: 1;
position: relative;
display: flex;
align-items: center;
justify-content: center;
min-height: 400px;
}

.floating-card {
position: absolute;
background: var(--white);
padding: 1.5rem;
border-radius: 15px;
box-shadow: var(--shadow-xl);
display: flex;
align-items: center;
gap: 1rem;
animation: float-card 3s infinite ease-in-out;
}

.floating-card i {
font-size: 2rem;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.floating-card span {
font-weight: 700;
color: var(--dark-color);
}

.card-1 {
top: 10%;
left: 10%;
animation-delay: 0s;
}

.card-2 {
top: 50%;
right: 10%;
animation-delay: 1s;
}

.card-3 {
bottom: 10%;
left: 20%;
animation-delay: 2s;
}

@keyframes float-card {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}

/* Animations */
.animate-fade-in {
animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
animation: fadeIn 0.8s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
animation: fadeIn 0.8s ease-out 0.6s backwards;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Section Styles */
section {
padding: 80px 20px;
}

.section-header {
text-align: center;
margin-bottom: 4rem;
}

.section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--dark-color);
}

.section-subtitle {
font-size: 1.125rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}

/* Services Section */
.service-container {background:#021052;}
.services-section {max-width:1200px;margin:0 auto;}
.section-header {text-align:center;margin-bottom: 60px;color: white;}
.section-header h2 {font-size: 3rem;margin-bottom: 15px;font-weight: 700;}
.section-header p {font-size: 1.2rem;opacity: 0.9;max-width: 600px;margin: 0 auto;}
.services-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;margin-top: 40px;}
.service-card {background: transparent; border-radius: 15px;padding: 40px 30px;text-align: center;transition: all 0.3s ease;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);position: relative;overflow: hidden;border:solid 1px #fff;}
.service-card::before {content:'';position:absolute;top: 0;left: 0;width: 100%;height: 5px;background: linear-gradient(90deg, #667eea, #764ba2);transform: scaleX(0);transition: transform 0.3s ease;}
.service-card:hover {background-color: #fff;transform: translateY(-10px);box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);}
.service-card:hover::before {transform: scaleX(1);}
.service-icon {width: 80px;height: 80px;background:#fff; border-radius:50%;display: flex;align-items: center;justify-content: center;margin: 0 auto 25px;font-size: 2.5rem;color:white;transition:all 0.3s ease;}
.service-card:hover .service-icon {transform:rotate(360deg) scale(1.1);}
.service-card h3 {font-size: 1.5rem;color: #fff;margin-bottom: 15px;font-weight: 600;}
.service-card p {color:#fff;line-height:1.6;font-size:1rem;}
.service-link {display:inline-block;margin-top:20px;color: #fff;text-decoration:none;font-weight:600;transition:all 0.3s ease;position:relative;}
.service-link::after {content:'→';margin-left:5px;transition:margin-left 0.3s ease;}
.service-link:hover::after {margin-left:10px;}
.service-card:hover h3 {color:#333;} .service-card:hover p {color:#4d4d4d;} .service-card:hover .service-link {color:#004cff;}

/* About Section */
.about-content {display:flex;gap:4rem;align-items:center;}
.about-text {flex:1;}
.about-text h2 {font-size: 2.5rem;margin-bottom: 1.5rem;color: var(--dark-color);}
.about-text > p {font-size: 1.125rem; color: var(--text-light); margin-bottom: 2rem; line-height: 1.8;}
.stats-grid {display: grid;grid-template-columns: repeat(4, 1fr); gap: 2rem;}
.stat-item {text-align: center; padding: 1.5rem; background: var(--light-color); border-radius: 10px;}
.stat-number {font-size:3rem;font-weight:700;background:var(--gradient-1);-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom:0.5rem;}
.stat-item p {color: var(--text-light);font-weight: 500;}

/* Portfolio Section */
.portfolio {
background: var(--light-color);
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.portfolio-item {
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
background: var(--white);
opacity: 0;
transform: scale(0.9);
}

.portfolio-item[data-aos="zoom-in"].aos-animate {
opacity: 1;
transform: scale(1);
}

.portfolio-item:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-xl);
}

.portfolio-image {
position: relative;
overflow: hidden;
}

.portfolio-placeholder {
width: 100%;
height: 250px;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
}

.portfolio-placeholder i {
font-size: 4rem;
color: rgba(255, 255, 255, 0.5);
}

.portfolio-item:hover .portfolio-placeholder {
transform: scale(1.1);
}

.portfolio-info {
padding: 1.5rem;
}

.portfolio-info h3 {
font-size: 1.25rem;
margin-bottom: 0.5rem;
color: var(--dark-color);
}

.portfolio-info p {
color: var(--text-light);
}

/* Testimonials Section */
.testimonials-slider {
max-width: 800px;
margin: 0 auto 2rem;
position: relative;
min-height: 300px;
}

.testimonial-card {background: var(--white); padding: 3rem; border-radius: 20px; box-shadow: var(--shadow-lg); position: absolute; width: 100%; opacity: 0; transform: translateX(100%); transition: all 0.5s ease;}
.testimonial-card.active {opacity: 1;transform: translateX(0); position: relative;}
.stars {color: #fbbf24; margin-bottom: 1.5rem; font-size: 1.25rem;}
.testimonial-text {font-size: 1.125rem; line-height: 1.8; color: var(--text-color); margin-bottom: 2rem; font-style: italic;}

.testimonial-author {display:flex; align-items: center; gap: 1rem;}

.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
background: var(--gradient-1);
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-weight: 700;
font-size: 1.25rem;
}

.author-info h4 {
color: var(--dark-color);
margin-bottom: 0.25rem;
}

.author-info p {
color: var(--text-light);
font-size: 0.875rem;
}

.testimonial-dots {
display: flex;
justify-content: center;
gap: 0.75rem;
}

.dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: #d1d5db;
cursor: pointer;
transition: all 0.3s ease;
}

.dot.active {
background: var(--primary-color);
width: 30px;
border-radius: 10px;
}

/* Contact Section */
.contact {
background: var(--light-color);
}

.contact-content {
display: flex;
gap: 4rem;
}

.contact-info {
flex: 1;
}

.info-item {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
}

.info-icon {
width: 60px;
height: 60px;
background: var(--gradient-1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.info-icon i {
font-size: 1.5rem;
color: var(--white);
}

.info-text h4 {
color: var(--dark-color);
margin-bottom: 0.5rem;
}

.info-text p {
color: var(--text-light);
}

.social-links {
display: flex;
gap: 1rem;
margin-top: 2rem;
}

.social-links a {
width: 45px;
height: 45px;
background: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
transition: all 0.3s ease;
box-shadow: var(--shadow-sm);
}

.social-links a:hover {
background: var(--primary-color);
color: var(--white);
transform: translateY(-3px);
}

.contact-form {
flex: 1;
background: var(--white);
padding: 2.5rem;
border-radius: 15px;
box-shadow: var(--shadow-lg);
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 2px solid #e5e7eb;
border-radius: 10px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}

.form-group textarea {
resize: vertical;
}

.contact-form .btn {
width: 100%;
}

.form-message {
margin-top: 1rem;
padding: 1rem;
border-radius: 8px;
display: none;
}

.form-message.success {
background: #d1fae5;
color: #065f46;
display: block;
}

.form-message.error {
background: #fee2e2;
color: #991b1b;
display: block;
}

/* Footer */
.footer {
background: var(--dark-color);
color: var(--white);
padding: 4rem 20px 2rem;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.footer-section h4 {
margin-bottom: 1.5rem;
font-size: 1.25rem;
}

.footer-section p {
color: #9ca3af;
margin-bottom: 1rem;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 0.75rem;
}

.footer-section ul li a {
color: #9ca3af;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-section ul li a:hover {
color: var(--white);
}

.newsletter-form {
display: flex;
gap: 0.5rem;
}

.newsletter-form input {
flex: 1;
padding: 0.75rem;
border: none;
border-radius: 8px;
background: rgba(255, 255, 255, 0.1);
color: var(--white);
}

.newsletter-form input::placeholder {
color: #9ca3af;
}

.newsletter-form button {
padding: 0.75rem 1.25rem;
background: var(--primary-color);
border: none;
border-radius: 8px;
color: var(--white);
cursor: pointer;
transition: background 0.3s ease;
}

.newsletter-form button:hover {
background: var(--secondary-color);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #9ca3af;
}

/* Scroll to Top */
.scroll-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--gradient-1);
border: none;
border-radius: 50%;
color: var(--white);
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
box-shadow: var(--shadow-lg);
z-index: 999;
}

.scroll-top.active {
opacity: 1;
visibility: visible;
}

.scroll-top:hover {
transform: translateY(-5px);
}

/* AOS Animation Classes */
[data-aos="fade-up"],
[data-aos="fade-right"],
[data-aos="fade-left"],
[data-aos="zoom-in"] {
transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
animation: fadeUp 0.6s ease forwards;
}

[data-aos="fade-right"].aos-animate {
animation: fadeRight 0.6s ease forwards;
}

[data-aos="fade-left"].aos-animate {
animation: fadeLeft 0.6s ease forwards;
}

[data-aos="zoom-in"].aos-animate {
animation: zoomIn 0.6s ease forwards;
}

@keyframes fadeUp {from {opacity: 0;transform: translateY(30px);} to {opacity: 1;transform: translateY(0);}}
@keyframes fadeRight {from {opacity: 0;transform: translateX(-30px);} to {opacity: 1;transform: translateX(0);}}
@keyframes fadeLeft {from {opacity: 0; transform: translateX(30px);} to {opacity: 1; transform: translateX(0);}}
@keyframes zoomIn {from {opacity: 0;transform: scale(0.9);} to {opacity: 1; transform: scale(1);}}

/* CSS for Form Messages */
.form-message {margin-top: 15px; padding: 10px; border-radius: 5px; display: none;}
.form-message.success {display: block; background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb;}
.form-message.error {display: block; background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb;}


/* Banner Style writen from here */
.banner-container {width: 100%; max-width:100%; border-radius:0px; overflow: hidden; position: relative; background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);}
.banner {width:100%;max-width:100%;min-height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:40px;position:relative; overflow:hidden;}
.banner .centered-section {display:flex;justify-content:center;max-width:1200px;gap:36px;}

/* Animated background elements */
.bg-circle {
position: absolute;
border-radius: 50%;
opacity: 0.1;
filter: blur(60px);
animation: float 15s infinite ease-in-out;
}

.circle-1 {
width: 300px;
height: 300px;
background: #3b82f6;
top: -100px;
left: -100px;
animation-delay: 0s;
}

.circle-2 {
width: 250px;
height: 250px;
background: #8b5cf6;
bottom: -80px;
right: -50px;
animation-delay: 5s;
}

.circle-3 {
width: 200px;
height: 200px;
background: #10b981;
top: 50%;
right: 10%;
animation-delay: 10s;
}

/* Content styling */
.banner-content {
position: relative;
z-index: 2;
max-width: 600px;
}

.tagline {
font-size: 14px;
color: #60a5fa;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 15px;
display: flex;
align-items: center;
opacity: 0;
animation: fadeInUp 1s 0.5s forwards;
}

.tagline i {
margin-right: 10px;
}

.main-headline {
font-size: 3.5rem;
font-weight: 800;
line-height: 1.1;
margin-bottom: 20px;
background: linear-gradient(90deg, #60a5fa, #a78bfa);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
opacity: 0;
animation: fadeInUp 1s 0.8s forwards;
}

.highlight {
color: #fbbf24;
position: relative;
}

.highlight::after {
content: '';
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 8px;
background-color: rgba(251, 191, 36, 0.2);
z-index: -1;
}

.description {
font-size: 1.1rem;
line-height: 1.6;
color: #cbd5e1;
margin-bottom: 30px;
opacity: 0;
animation: fadeInUp 1s 1.1s forwards;
}

/* CTA Buttons */
.cta-buttons {
display: flex;
gap: 20px;
margin-bottom: 40px;
opacity: 0;
animation: fadeInUp 1s 1.4s forwards;
}

.btn {
padding: 15px 30px;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.btn-primary {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
color: white;
border: none;
box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
background: transparent;
color: #cbd5e1;
border: 2px solid #475569;
}

.btn-secondary:hover {
border-color: #60a5fa;
color: #60a5fa;
}

.btn i {margin-right: 10px;}

/* Stats section */
.stats {
display: flex;
gap: 40px;
opacity: 0;
animation: fadeInUp 1s 1.7s forwards;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-value {
font-size: 2.5rem;
font-weight: 700;
color: #60a5fa;
line-height: 1;
}

.stat-label {
font-size: 0.9rem;
color: #94a3b8;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 5px;
}

/* Animated elements */
.floating-elements {position:relative; height:100%; z-index:1;}

.floating-element {
position: absolute;
font-size: 2rem;
color: rgba(255, 255, 255, 0.1);
animation: floatElement 20s infinite linear;
}

.element-1 {
top: 15%;
right: 20%;
animation-delay: 0s;
}

.element-2 {
top: 40%;
right: 30%;
animation-delay: 5s;
}

.element-3 {
top: 70%;
right: 15%;
animation-delay: 10s;
}

.element-4 {
top: 25%;
right: 50%;
animation-delay: 15s;
}

/* Controls for animation */
.controls {margin-top: 30px;display: flex;gap: 15px;}
.control-btn {background-color: #1e293b;border: none;color: #cbd5e1;padding: 10px 20px;border-radius: 50px;cursor: pointer;transition: all 0.3s;display: flex;align-items: center;gap: 8px;}
.control-btn:hover {background-color: #334155;color: #f8fafc;}

/* Animation keyframes */
@keyframes float { 0%, 100% {transform: translateY(0) translateX(0);} 33% { transform: translateY(-30px) translateX(30px);} 66% {transform: translateY(20px) translateX(-20px);}}
@keyframes fadeInUp {from {opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);}}
@keyframes floatElement {0% {transform: translateY(0) rotate(0deg);} 25% {transform: translateY(-20px) rotate(90deg);} 50% {transform: translateY(0) rotate(180deg);} 75% {transform: translateY(20px) rotate(270deg);} 100% {transform: translateY(0) rotate(360deg);}}

/* Responsive Design */
@media (max-width: 968px) {
.nav-menu {position: fixed; top: 70px; right: -100%; width: 100%; max-width: 400px; height: calc(100vh - 70px); background: var(--white); flex-direction: column; padding: 2rem; box-shadow: var(--shadow-lg); transition: right 0.3s ease;}
.nav-menu.active {right: 0;}
.hamburger {display: flex;}
.hero {flex-direction: column; text-align: center; padding-top: 120px;}
.hero-title {font-size: 2.5rem;}
.hero-buttons {justify-content: center;}
.about-content {flex-direction: column;}
.contact-content {flex-direction: column;}
.stats-grid {grid-template-columns: repeat(2, 1fr);}
.banner .centered-section {flex-direction: column;}
.testimonials-slider {overflow: hidden;}
.contact .container {padding: 0px;}
.contact-form {padding:1.5rem}
}

@media (max-width: 640px) {
.hero-title {font-size: 2rem;}
.hero-subtitle {font-size: 1rem;}
.section-title {font-size: 2rem;}
.services-grid {grid-template-columns: 1fr;}
.portfolio-grid {grid-template-columns: 1fr;}
.stats-grid {grid-template-columns: 1fr;}
.footer-content {grid-template-columns: 1fr;}
.testimonial-card {padding: 2rem 1.5rem;}
.floating-card {padding: 1rem;}
.card-2 {display: none;}
.banner .centered-section {flex-direction: column;}
.testimonials-slider {overflow: hidden;}
.contact .container {padding: 0px;}
.contact-form {padding:1.5rem}
}

@media (max-width: 992px) {
.main-headline {font-size: 2.8rem;}
.floating-elements {width:40%;}
}

@media (max-width: 768px) {
.banner {min-height: 600px; padding: 30px;}
.main-headline {font-size: 2.3rem;}
.floating-elements {display: none;}
.cta-buttons {flex-direction: column; gap:15px;}
.btn {width: 100%; justify-content: center;}
.stats {flex-wrap: wrap; gap: 30px;}
.stat-item {width: calc(50% - 15px);}
}

@media (max-width: 480px) {
.banner {padding: 20px; min-height: 650px;}
.main-headline {font-size: 1.8rem;}
.description {font-size: 1rem;}
.stat-value {font-size: 2rem;}
.stat-item {width: 100%;}
}