/* MegaMax Services - Complete CSS Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: hsl(210, 40%, 98%);
    background: linear-gradient(135deg, hsl(225, 25%, 4%), hsl(225, 25%, 8%));
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --background: hsl(225, 25%, 4%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(225, 25%, 6%);
    --card-foreground: hsl(210, 40%, 98%);
    --primary: hsl(262, 90%, 65%);
    --primary-foreground: hsl(210, 40%, 98%);
    --secondary: hsl(215, 100%, 85%);
    --secondary-foreground: hsl(225, 25%, 4%);
    --muted: hsl(225, 25%, 12%);
    --muted-foreground: hsl(215, 20.2%, 65.1%);
    --accent: hsl(180, 100%, 60%);
    --accent-foreground: hsl(225, 25%, 4%);
    --border: hsl(225, 25%, 12%);
    --radius: 0.75rem;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(262, 90%, 65%), hsl(215, 100%, 85%));
    --gradient-accent: linear-gradient(135deg, hsl(180, 100%, 60%), hsl(262, 90%, 65%));
    --gradient-dark: linear-gradient(135deg, hsl(225, 25%, 4%), hsl(225, 25%, 8%));
    
    /* Glass morphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow-glow: 0 0 50px hsl(262, 90%, 65%, 0.3);
    --shadow-elevated: 0 20px 40px -15px hsl(225, 25%, 4%, 0.4);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.hidden {
    display: none !important;
}

/* Animations */
@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px hsl(262, 90%, 65%, 0.3);
    }
    50% {
        box-shadow: 0 0 40px hsl(262, 90%, 65%, 0.6), 0 0 60px hsl(180, 100%, 60%, 0.3);
    }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animated classes */
.floating {
    animation: floating 6s ease-in-out infinite;
}

.animate {
    animation: fade-in-up 0.6s ease-out;
}

/*.glow-btn {
    animation: glow-pulse 2s ease-in-out infinite;
}*/

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 1.5rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
}

.logo {
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-left: 2.5rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    display: none;
}

.mobile-menu-btn {
    display: block;
}

.mobile-menu {
    margin-top: 0.5rem;
}

.mobile-menu-content {
    padding: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
}

.mobile-menu-content ul {list-style:none}
.mobile-menu-content ul li.has-child {}
.mobile-menu-content ul li.has-child ul {margin: 0 30px;}
.mobile-menu-content ul li.has-child ul li {}
.mobile-menu-content ul li.has-child ul li a {color: #fff;text-decoration: none;font-size: 15px;}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-cta {
    padding: 0.75rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: block;
    }
    
    .nav-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-hero {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border: none;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--foreground);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: none;cursor: pointer
}

.btn-ghost:hover {
    /*background: rgba(255, 255, 255, 0.1);*/
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--background), rgba(var(--background), 0.8), hsl(262, 90%, 65%, 0.2));
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: hsl(262, 90%, 65%, 0.2);
    animation: floating 6s ease-in-out infinite;
    animation-delay: 0s;
}

.floating-2 {
    top: 10rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: hsl(180, 100%, 60%, 0.2);
    animation: floating 6s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-3 {
    bottom: 5rem;
    left: 25%;
    width: 4rem;
    height: 4rem;
    background: hsl(215, 100%, 85%, 0.2);
    animation: floating 6s ease-in-out infinite;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  text-align: left;

}

.hero-text {
    animation: fade-in-up 0.6s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
	font-size: 1.25rem;
	color: #fff;
	margin-bottom: 2rem;
	/* max-width: 48rem; */
	/* margin-left: auto; */
	/* margin-right: auto; */
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	/* justify-content: center; */
	align-items: center;
	margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    animation: scale-in 0.5s ease-out;padding: 5% 0 0;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s;text-align: center;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {font-size: 2.5rem;font-weight: bold;margin-bottom: 0.5rem;color: #ea580c;}
.stat-label {color: #fff;opacity: 0.8}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
}

/* Section Styles */
.separator {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 1rem;
	font-family: "Roboto Flex",serif;line-height: normal;
}
.section-description {
	font-size: 1.25rem;
	color: #fff;
	margin: 0 auto;
	line-height: 1.6;
	opacity: 0.8;font-family: "Roboto",serif;
}
.section-description.large {
    font-size: 1.5rem;
    max-width: 64rem;
}

/* Background Elements */
.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floating 6s ease-in-out infinite;
}

.bg-element-1 {
    top: 2.5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: hsl(180, 100%, 60%, 0.1);
    animation-delay: 1s;
}

.bg-element-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: hsl(262, 90%, 65%, 0.1);
    animation-delay: 3s;
}

.bg-element-3 {
    top: 2.5rem;
    left: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: hsl(180, 100%, 60%, 0.05);
    animation-delay: 1s;
}

.bg-element-4 {
    bottom: 5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: hsl(262, 90%, 65%, 0.05);
    animation-delay: 3s;
}

.bg-element-5 {
    top: 5rem;
    left: 5rem;
    width: 5rem;
    height: 5rem;
    background: hsl(262, 90%, 65%, 0.05);
    animation-delay: 0s;
}

.bg-element-6 {
    bottom: 2.5rem;
    right: 5rem;
    width: 7rem;
    height: 7rem;
    background: hsl(180, 100%, 60%, 0.05);
    animation-delay: 2s;
}

/* Why MegaMax Section */
.why-megamax {
	padding: 5rem 1.5rem;
	position: relative;
	background: #000000;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

.reason-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(30px);
}

.reason-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fade-in-up 0.6s ease-out;
}

.reason-card:hover {
   /* transform: scale(1.05);*/
}

.reason-icon {
    width: 4rem;
    height: 4rem;
    background: #ea580c;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s;
}
.reason-icon .material-symbols-outlined {font-size: 36px;}
.reason-card:hover .reason-icon {
    transform: scale(1.1);
}

.reason-icon .icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.reason-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: all 0.3s;font-family: "Roboto",serif;
}

.reason-card:hover .reason-title {color: #ea580c;}

.reason-description {
	color: #fff;
	line-height: 1.6;
	opacity: 0.8;font-family: "Roboto",serif;
}
.stats-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
	font-size: 1.875rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
.stat-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* What To Expect Section */
.what-to-expect {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;background: #22262b;
}

.expectations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.expectation-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(30px);
}

.expectation-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fade-in-up 0.6s ease-out;
}

.expectation-card:hover {
    /*transform: scale(1.05);*/
}

.expectation-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.expectation-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.expectation-card:hover .expectation-emoji {
    transform: scale(1.1);
}

.expectation-text {
    flex: 1;
}

.expectation-title {
	font-size: 1.3rem;
	font-weight: bold;
	margin-bottom: 1rem;
	color: #ffffff;line-height: 26px;
}
.expectation-description {
	color: #fff;
	line-height: 1.4;
	opacity: 0.8;
}
@media (min-width: 768px) {
    .expectations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: #22262b;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.partner-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fade-in-up 0.6s ease-out;
}

.partner-card:hover {
    transform: scale(1.05);
}

.partner-content {
    text-align: center;
}

.partner-logo {
    font-size: 1.125rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.partner-name {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.partner-card:hover .partner-name {
    opacity: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .partners-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Services Section */
.services {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--background), rgba(var(--background), 0.95), hsl(180, 100%, 60%, 0.05));
}

.animated-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: floating 6s ease-in-out infinite;
}

.animated-bg-1 {
    top: 5rem;
    left: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: hsl(180, 100%, 60%, 0.2);
    animation-delay: 2s;
    animation: glow-pulse 2s ease-in-out infinite;
}

.animated-bg-2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 7rem;
    height: 7rem;
    background: hsl(262, 90%, 65%, 0.2);
    animation-delay: 4s;
}

.animated-bg-3 {
    top: 33.333333%;
    right: 25%;
    width: 5rem;
    height: 5rem;
    background: hsl(215, 100%, 85%, 0.15);
    filter: blur(40px);
    animation: rotate-slow 20s linear infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    height: auto;
    opacity: 1;
    transform: translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fade-in-up 0.6s ease-out;
}

.service-card:hover {
    /*transform: scale(1.05);*/
    box-shadow: var(--shadow-elevated);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(180, 100%, 60%, 0.05), hsl(262, 90%, 65%, 0.05));
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-header {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}
.service-header .thumb {}
.service-header .thumb img {width: 100%;display: block;object-fit: cover;}

.service-category {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
    animation: fade-in-up 0.6s ease-out;
}

.service-title {
	font-size: 1.3rem;
	line-height: 1.4;
	font-weight: bold;
	transition: all 0.3s;
	font-family: "Roboto FLex",serif;
	margin-bottom: 6px;
}

.service-card:hover .service-title {
    
}

.service-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    flex: 1;padding: 1.2rem;
}

.service-description {
	color: #fff;
	line-height: 1.6;
	margin-bottom: 1.2rem;
	flex: 1;
	transition: color 0.3s;
	opacity: 0.8;
	font-family: "Roboto",serif;
}
.service-card:hover .service-description {
    color: var(--foreground);
}

.service-btn {
	background: transparent;
	border: none;
	color: #ea580c;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0;
	height: auto;
	width: fit-content;
	transition: all 0.3s;
	cursor: pointer;
	font-size: 15px;
	font-family: "Roboto",serif;text-decoration: none;
}
.service-btn:hover {
    color: #fff;
}

.service-btn:hover .btn-icon {
    transform: translateX(0.25rem);
}

.services-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blogs Section */
.blogs {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
    background: rgba(var(--background), 0.3);
}

.blogs-bg {
	position: absolute;
	inset: 0;
	opacity: 0.25;
}

.blogs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--background), rgba(var(--background), 0.95), hsl(180, 100%, 60%, 0.05));
}

.animated-bg-blog {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: floating 6s ease-in-out infinite;
}

.animated-bg-blog-1 {
    top: 5rem;
    left: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: hsl(180, 100%, 60%, 0.2);
    animation-delay: 2s;
    animation: glow-pulse 2s ease-in-out infinite;
}

.animated-bg-blog-2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 7rem;
    height: 7rem;
    background: hsl(262, 90%, 65%, 0.2);
    animation-delay: 4s;
}

.animated-bg-blog-3 {
    top: 33.333333%;
    right: 25%;
    width: 5rem;
    height: 5rem;
    background: hsl(215, 100%, 85%, 0.15);
    filter: blur(40px);
    animation: rotate-slow 20s linear infinite;
}

.blogs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    height: fit-content;
    opacity: 1;
    transform: translateY(30px);
}

.blog-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fade-in-up 0.6s ease-out;
}

.blog-card:hover {
    /*transform: scale(1.05);*/
    box-shadow: var(--shadow-elevated);
}

.blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(180, 100%, 60%, 0.05), hsl(262, 90%, 65%, 0.05));
    opacity: 0;
    transition: opacity 0.5s;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-header {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
}
.blog-header .thumb {}
.blog-header .thumb img {width: 100%;display: block;object-fit: cover;}

.blog-category {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
    animation: fade-in-up 0.6s ease-out;
}

.blog-title {
	font-size: 1.3rem;
	line-height: 1.4;
	font-weight: bold;
	transition: all 0.3s;
	font-family: "Roboto Flex",serif;
	margin-bottom: 6px;
}

.blog-card:hover .blog-title {
    
}

.blog-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    flex: 1;padding: 1.2rem;
}

.blog-description {
	color: #fff;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex: 1;
	transition: color 0.3s;
	opacity: 0.8;
}

.blog-card:hover .blog-description {
    color: var(--foreground);
}

.blog-btn {
    background: transparent;
  border: none;
  color: #ea580c;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  height: auto;
  width: fit-content;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 15px;
  font-family: "Roboto",serif;
}

.blog-btn:hover {
    color: #fff;
}

.blog-btn:hover .btn-icon {
    transform: translateX(0.25rem);
}

.blogs-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blogs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;background: #22262b;
}

.testimonials-bg {/*
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;*/
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--background), rgba(var(--background), 0.95), hsl(180, 100%, 60%, 0.05));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(30px);height: 350px;
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: fade-in-up 0.6s ease-out;
}

.testimonial-card:hover {
    /*transform: scale(1.02);*/
    box-shadow: var(--shadow-elevated);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
	color: #fff;
	line-height: 1.6;
	margin-bottom: 2rem;
	flex: 1;
	font-style: italic;
	font-size: 1.125rem;
	opacity: 0.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: #03A9F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.author-avatar img {border-radius:50%}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: bold;
    margin-bottom: 0;
}

.author-role {
	color: #fff;
	font-size: 0.875rem;
	opacity: 0.8;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 6rem 1.5rem;
    background: rgba(var(--background), 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-text {
    margin-bottom: 2rem;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-description {
	color: #fff;
	line-height: 1.6;
	opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: #ea580c;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-data {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
	color: #fff;
	opacity: 0.8;
}
.contact-value a {color:#fff;text-decoration: none}
.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-form {
    width: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-input,
.form-textarea {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.2s;font-family: "Roboto",serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-foreground);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #03A9F4;
    box-shadow: 0 0 0 2px hsl(262, 90%, 65%, 0.2);
}

.form-textarea {
    resize: none;
    min-height: 6rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    background: #22262b;
    border-top: 1px solid rgba(var(--border), 0.5);
    padding: 4rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;color: #fff;
}

.footer-description {
	color: #fff;
	line-height: 1.6;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	opacity: 0.8;
}

.social-section {
    margin-top: 1rem;
}

.social-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #ea580c;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    width: 2rem;
    height: 2rem;
    background: #ea580c;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact-icon .icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

.footer-contact-content {
    flex: 1;
}

.footer-contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.footer-contact-text {
	color: #fff;
	line-height: 1.6;
	font-size: 0.875rem;
	opacity: 0.8;
}

.footer-contact-link {
	color: #fff;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s;
	opacity: 0.8;
}

.footer-contact-link:hover {
    color: #f97316;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-link {
	color: #fff;
	text-decoration: none;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	opacity: 0.8;
}



.footer-link:hover {
    color: #f97316;
}

.footer-link:hover::before {
    transform: translateX(0.25rem);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--border), 0.3);
    text-align: center;
}

.footer-copyright {
	color: #fff;
	font-size: 0.875rem;
	opacity: 0.8;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}