css/* ================================
   BASIC CROP CARE - RESPONSIVE CSS
   LAST PRODUCT PERFECTLY CENTERED
   ================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Bengali', Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #f5f5f5;
    overflow-x: hidden;
}

/* ================================
   HEADER OPTION 1: DEEP BLUE GRADIENT
   Professional blue theme with wave animations
   Perfect for green logo contrast
   ================================ */

header {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #2563eb 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease;
    overflow: hidden;
}

/* Animated Wave Background */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.3) 0%, transparent 60%);
    animation: blueWave 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes blueWave {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.8;
    }
}

/* Flowing Lines Pattern */
header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(147, 197, 253, 0.15) 30%, rgba(147, 197, 253, 0.15) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(96, 165, 250, 0.1) 30%, rgba(96, 165, 250, 0.1) 70%, transparent 70%);
    background-size: 80px 80px;
    animation: flowingLines 15s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

@keyframes flowingLines {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 80px 80px, -80px -80px;
    }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    transition: height 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.logo img:hover {
    transform: scale(1.05) rotate(2deg);
}

.logo-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 2rem);
    margin: 0;
    padding: 0;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animated Underline */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #93c5fd, #60a5fa);
    transition: width 0.3s ease;
    margin: 0 auto;
}

.nav-menu a:hover::after {
    width: calc(100% - 24px);
}

/* Hover Glow Effect */
.nav-menu a:hover {
    color: #93c5fd;
    background: rgba(147, 197, 253, 0.15);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(147, 197, 253, 0.6);
}

.nav-menu a:active {
    transform: translateY(0);
}

/* Special Yellow Link Styling */
.nav-menu a span[style*="color:yellow"],
.nav-menu a span[style*="color: yellow"] {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: none;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* Scrolled State */
header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

header.scrolled .logo img {
    height: 40px;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Large Desktop (1440px+) */
@media (min-width: 1441px) {
    .header-content {
        max-width: 1400px;
    }
    .logo img {
        height: 60px;
    }
    .nav-menu {
        gap: 2.5rem;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 100%);
        flex-direction: column;
        gap: 0;
        padding: 80px 20px 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(147, 197, 253, 0.2);
    }
    
    .nav-menu a {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 0;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover {
        background: rgba(147, 197, 253, 0.15);
        transform: translateX(5px);
    }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
    }
    .header-content {
        padding: 0 15px;
    }
    .logo img {
        height: 40px;
    }
    .nav-menu {
        width: 250px;
        padding: 70px 15px 15px;
    }
}

/* Extra Small Mobile (below 480px) */
@media (max-width: 480px) {
    header {
        padding: 0.6rem 0;
    }
    .logo img {
        height: 35px;
    }
    .nav-menu {
        width: 100%;
    }
}

/* ================================
   ACCESSIBILITY
   ================================ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    header::before,
    header::after,
    .logo img,
    .nav-menu a {
        animation: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    header {
        background: #1e3a8a;
    }
    header::before,
    header::after {
        display: none;
    }
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    display: block;
}

@media (min-width: 1025px) {
    .menu-overlay {
        display: none !important;
    }
}

    /* ================================
   HERO CAROUSEL - FULLY RESPONSIVE CSS
   Optimized for all devices index and product page
   ================================ */

/* Hero Carousel Container */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Animated Background Layer */
.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 115, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(138, 201, 38, 0.3) 0%, transparent 50%);
    animation: bgAnimation 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes bgAnimation {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
}

/* Floating Particles */
.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 70% 40%, white, transparent);
    background-size: 200% 200%;
    animation: particles 20s linear infinite;
    opacity: 0.4;
    z-index: 1;
}

@keyframes particles {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Carousel Slides */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Content */
.slide-content {
    text-align: center;
    color: white;
    padding: clamp(15px, 3vw, 20px);
    max-width: clamp(300px, 90vw, 900px);
    animation: slideIn 1s ease-out;
    position: relative;
    z-index: 3;
}

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

.slide-content h1 {
    font-size: clamp(1.5rem, 5vw, 4rem);
    margin-bottom: clamp(15px, 3vw, 20px);
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(20px, 4vw, 30px);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: clamp(12px, 2.5vw, 15px) clamp(25px, 5vw, 40px);
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.cta-button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    bottom: clamp(20px, 5vh, 50px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    z-index: 10;
}

.nav-btn {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn svg {
    width: clamp(18px, 4vw, 24px);
    height: clamp(18px, 4vw, 24px);
    fill: white;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: clamp(75px, 12vh, 120px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(8px, 1.5vw, 10px);
    z-index: 10;
}

.indicator {
    width: clamp(10px, 2vw, 12px);
    height: clamp(10px, 2vw, 12px);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: clamp(25px, 5vw, 30px);
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Gradient Overlays for Different Slides */
.slide-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.slide-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.slide-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.slide-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.slide-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.slide-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

/* Large Desktop (1440px+) */
@media (min-width: 1441px) {
    .hero-carousel {
        min-height: 600px;
    }
    
    .slide-content {
        max-width: 1000px;
    }
}

/* Desktop (1024px - 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
    .hero-carousel {
        min-height: 550px;
    }
}

/* Tablet Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-carousel {
        height: 90vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .carousel-nav {
        bottom: 40px;
    }
    
    .slide-indicators {
        bottom: 100px;
    }
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-carousel {
        height: 80vh;
        min-height: 450px;
    }
    
    .slide-content {
        padding: 15px;
        max-width: 95%;
    }
    
    .slide-content h1 {
        margin-bottom: 15px;
    }
    
    .slide-content p {
        margin-bottom: 20px;
    }
    
    .carousel-nav {
        bottom: 30px;
        gap: 10px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .slide-indicators {
        bottom: 90px;
    }
    
    .cta-button {
        padding: 12px 30px;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .hero-carousel {
        height: 70vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding: 15px 10px;
    }
    
    .slide-content h1 {
        margin-bottom: 12px;
    }
    
    .slide-content p {
        margin-bottom: 18px;
        max-width: 95%;
    }
    
    .carousel-nav {
        bottom: 20px;
        gap: 8px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        border-width: 1.5px;
    }
    
    .nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .slide-indicators {
        bottom: 75px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 25px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
    .hero-carousel {
        height: 65vh;
        min-height: 350px;
    }
    
    .slide-content {
        padding: 12px 8px;
    }
    
    .carousel-nav {
        bottom: 15px;
        gap: 6px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .slide-indicators {
        bottom: 65px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Landscape Orientation (Mobile/Tablet) */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-carousel {
        height: 100vh;
        min-height: 100vh;
    }
    
    .slide-content h1 {
        font-size: clamp(1.3rem, 4vw, 2.5rem);
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: clamp(0.8rem, 2vw, 1.1rem);
        margin-bottom: 15px;
    }
    
    .carousel-nav {
        bottom: 15px;
    }
    
    .slide-indicators {
        bottom: 60px;
    }
    
    .cta-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Very Short Landscape */
@media (max-height: 450px) and (orientation: landscape) {
    .hero-carousel {
        min-height: 100vh;
    }
    
    .slide-content h1 {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
        margin-bottom: 8px;
    }
    
    .slide-content p {
        font-size: clamp(0.75rem, 1.8vw, 1rem);
        margin-bottom: 12px;
    }
    
    .carousel-nav {
        bottom: 10px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .slide-indicators {
        bottom: 50px;
    }
    
    .cta-button {
        padding: 7px 18px;
        font-size: 0.8rem;
    }
}

/* ================================
   ACCESSIBILITY & PERFORMANCE
   ================================ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-carousel::before,
    .hero-carousel::after,
    .slide-content,
    .carousel-slide {
        animation: none !important;
        transition: opacity 0.3s ease-in-out !important;
    }
    
    .nav-btn,
    .indicator,
    .cta-button {
        transition: none !important;
    }
    
    .nav-btn:hover,
    .cta-button:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .nav-btn {
        border-width: 3px;
        background: rgba(255, 255, 255, 0.5);
    }
    
    .indicator {
        border: 2px solid white;
    }
    
    .cta-button {
        border: 2px solid #667eea;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hero-carousel {
        background: linear-gradient(135deg, #2d3561 0%, #3a2051 100%);
    }
    
    .slide-1 { background: linear-gradient(135deg, #2d3561 0%, #3a2051 100%); }
    .slide-2 { background: linear-gradient(135deg, #702a5f 0%, #7b2b36 100%); }
    .slide-3 { background: linear-gradient(135deg, #275680 0%, #00788f 100%); }
    .slide-4 { background: linear-gradient(135deg, #21733d 0%, #1c7868 100%); }
    .slide-5 { background: linear-gradient(135deg, #7d384e 0%, #7f7020 100%); }
    .slide-6 { background: linear-gradient(135deg, #186768 0%, #1a0433 100%); }
}

/* Print Styles */
@media print {
    .hero-carousel::before,
    .hero-carousel::after,
    .carousel-nav,
    .slide-indicators {
        display: none;
    }
    
    .hero-carousel {
        height: auto;
        min-height: auto;
    }
    
    .carousel-slide {
        position: relative;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto;
        page-break-inside: avoid;
    }
    
    .slide-content {
        color: black;
        text-shadow: none;
    }
    
    .cta-button {
        display: none;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .indicator {
        width: 14px;
        height: 14px;
    }
    
    .indicator.active {
        width: 35px;
    }
    
    .cta-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
    .hero-carousel {
        max-height: 100vh;
    }
    
    .slide-content {
        max-width: 1200px;
    }
}

/* Small Height Screens (Netbooks) */
@media (max-height: 500px) and (min-width: 768px) {
    .hero-carousel {
        min-height: 100vh;
    }
    
    .slide-content h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .carousel-nav {
        bottom: 15px;
    }
    
    .slide-indicators {
        bottom: 60px;
    }
}

/* ================================
   CONTACT PAGE HERO SECTION - FIXED
   Properly aligned with header
   ================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    padding: 60px 20px;
    margin: 0; /* Remove any margin */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Animated Particle Grid */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px, 100px 100px;
    background-position: 0 0, 25px 25px;
    animation: particleMove 20s linear infinite;
    z-index: 1;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Exploding Particles */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle 3px at 20% 30%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(circle 2px at 80% 20%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(circle 4px at 40% 70%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(circle 2px at 90% 80%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(circle 3px at 10% 90%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(circle 2px at 60% 50%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(circle 4px at 30% 40%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(circle 2px at 70% 60%, rgba(255, 255, 255, 0.7), transparent);
    animation: particleExplosion 15s ease-in-out infinite;
    transform-origin: center;
    z-index: 2;
}

@keyframes particleExplosion {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.2) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(0.9) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.1) rotate(270deg);
        opacity: 1;
    }
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(252, 70, 107, 0.3);
    animation: contentPop 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-sizing: border-box;
}

@keyframes contentPop {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    70% {
        transform: scale(1.05) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Heading */
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 
        0 0 20px rgba(252, 70, 107, 0.6),
        0 0 40px rgba(63, 94, 251, 0.4),
        3px 3px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: textExplosion 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
}

@keyframes textExplosion {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-50px);
        letter-spacing: 10px;
    }
    60% {
        transform: scale(1.1) translateY(5px);
        letter-spacing: 2px;
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        letter-spacing: normal;
    }
}

/* Paragraph */
.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 
        0 0 10px rgba(63, 94, 251, 0.4),
        2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: textFadeIn 1s ease-out 0.8s both;
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Explosive Border Effect */
.hero-content::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(
        45deg,
        #fc466b,
        #3f5efb,
        #fc466b,
        #3f5efb
    );
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
    filter: blur(25px);
    animation: borderExplosion 5s ease-in-out infinite;
}

@keyframes borderExplosion {
    0%, 100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    25% {
        background-position: 50% 0%;
        transform: scale(1.05);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(0.95);
    }
    75% {
        background-position: 50% 100%;
        transform: scale(1.05);
    }
}

/* Pulsing Glow Effect */
.hero-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(252, 70, 107, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -2;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Large Desktop (1440px+) */
@media (min-width: 1441px) {
    .hero {
        min-height: 65vh;
    }
    .hero-content {
        max-width: 900px;
        padding: 50px;
    }
    .hero::before {
        background-size: 60px 60px, 120px 120px;
    }
}

/* Desktop (1024px - 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
    .hero {
        min-height: 60vh;
    }
}

/* Tablet Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        min-height: 55vh;
        padding: 50px 30px;
    }
    .hero-content {
        max-width: 700px;
        padding: 35px;
    }
    .hero::before {
        background-size: 45px 45px, 90px 90px;
    }
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 40px 20px;
    }
    .hero-content {
        max-width: 600px;
        padding: 30px 25px;
        border-radius: 15px;
    }
    .hero-content h1 {
        margin-bottom: 15px;
    }
    .hero::before {
        background-size: 40px 40px, 80px 80px;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 45vh;
        padding: 30px 15px;
    }
    .hero-content {
        padding: 25px 20px;
        border-radius: 12px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    .hero-content h1 {
        margin-bottom: 12px;
    }
    .hero-content::before {
        filter: blur(20px);
    }
    .hero::before {
        background-size: 35px 35px, 70px 70px;
    }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
    .hero {
        min-height: 40vh;
        padding: 25px 10px;
    }
    .hero-content {
        padding: 20px 15px;
        border-radius: 10px;
    }
    .hero::before {
        background-size: 30px 30px, 60px 60px;
    }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
    }
    .hero-content {
        padding: 30px 25px;
    }
}

/* Very Short Landscape */
@media (max-height: 450px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    .hero-content {
        padding: 25px 20px;
    }
    .hero-content h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
}

/* ================================
   ACCESSIBILITY & PERFORMANCE
   ================================ */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .hero-content,
    .hero-content h1,
    .hero-content p,
    .hero-content::before,
    .hero-content::after {
        animation: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero {
        background: #fc466b;
    }
    .hero-content {
        background: rgba(0, 0, 0, 0.9);
        border: 3px solid white;
    }
    .hero-content h1,
    .hero-content p {
        text-shadow: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hero {
        background: linear-gradient(135deg, #8b0f2e 0%, #1a237e 100%);
    }
}

/* Print Styles */
@media print {
    .hero::before,
    .hero::after,
    .hero-content::before,
    .hero-content::after {
        display: none;
    }
    .hero {
        background: #fc466b;
        min-height: auto;
    }
    .hero-content {
        background: white;
        color: black;
        box-shadow: none;
    }
    .hero-content h1,
    .hero-content p {
        color: black;
        text-shadow: none;
    }
}

/* ================================
   GLOBAL RESET (Add to top of your CSS)
   ================================ */

/* Make sure body has no default margins */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Ensure all sections stay within viewport */
* {
    box-sizing: border-box;
}

/* ===================================
   FOOTER - FULLY RESPONSIVE WITH NETWORK ANIMATION
   Animated nodes with connecting lines
   =================================== */
/* ===================================
   FOOTER - FULLY RESPONSIVE WITH NETWORK ANIMATION
   All text centered, maximum 2 rows on desktop/tablet
   =================================== */

footer {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #ffffff;
    padding: clamp(40px, 8vh, 60px) 0 clamp(20px, 4vh, 30px);
    overflow: hidden;
    margin-top: clamp(40px, 8vh, 80px);
    min-height: 400px;
}

.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(25px, 4vw, 40px);
    margin-bottom: clamp(25px, 5vh, 40px);
}

/* Center all footer sections */
.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    margin-bottom: clamp(15px, 3vh, 20px);
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.footer-section p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Centered Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 5px 10px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #8b5cf6;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 80%;
}

/* Centered Contact Items */
.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: center;
    gap: 10px;
}

.footer-contact-item .icon {
    color: #6366f1;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    flex-shrink: 0;
}

.footer-contact-item span:not(.icon) {
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
    text-align: center;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

/* Centered Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    width: clamp(38px, 8vw, 40px);
    height: clamp(38px, 8vw, 40px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    border-color: transparent;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* Centered Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(20px, 4vh, 30px);
    margin-top: clamp(25px, 5vh, 40px);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin: 0;
    text-align: center;
}

.footer-bottom a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #8b5cf6;
}

/* Yellow Text Styling */
span[style*="color:yellow"],
span[style*="color: yellow"] {
    color: #ffd700 !important;
    font-weight: 600;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Large Desktop (1101px+): 4 columns in ONE row */
@media (min-width: 1101px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium Desktop/Tablet (850px-1100px): 1 centered + 3 below = TWO rows */
@media (min-width: 850px) and (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-section:first-child {
        grid-column: 1 / 4;
        max-width: 600px;
        margin: 0 auto 20px auto;
    }
}

/* Tablet Portrait (481px-768px): 2x2 grid = TWO rows */
@media (min-width: 481px) and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(25px, 5vw, 35px);
    }
    
    .footer-section:first-child {
        grid-column: auto;
        max-width: none;
    }
    
    footer {
        margin-top: clamp(30px, 6vh, 60px);
        padding: clamp(40px, 6vh, 50px) 0 clamp(20px, 3vh, 25px);
    }
    
    .footer-contact-item {
        flex-direction: column;
        gap: 5px;
    }
}

/* Mobile (320px-480px): 1 column = FOUR rows */
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: clamp(25px, 5vw, 30px);
    }
    
    .footer-section:first-child {
        grid-column: auto;
        max-width: none;
    }

    footer {
        padding: clamp(30px, 6vh, 50px) 0 clamp(15px, 3vh, 25px);
        min-height: 300px;
        margin-top: clamp(30px, 5vh, 50px);
    }
    
    .footer-content {
        padding: 0 15px;
    }

    .footer-section h3::after {
        width: 40px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-social svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-contact-item {
        flex-direction: column;
        gap: 5px;
    }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section h3::after {
        width: 35px;
    }

    .footer-contact-item {
        font-size: 0.9rem;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social svg {
        width: 16px;
        height: 16px;
    }
}

/* Ultra Small Mobile (below 320px) */
@media (max-width: 320px) {
    footer {
        padding: clamp(25px, 5vh, 40px) 0 clamp(12px, 2.5vh, 20px);
    }

    .footer-grid {
        gap: 20px;
    }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    footer {
        padding: clamp(30px, 5vh, 40px) 0 clamp(15px, 3vh, 20px);
        min-height: auto;
    }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .footer-links a:active,
    .footer-social a:active,
    .footer-contact-item a:active {
        opacity: 0.8;
    }

    .footer-social a {
        min-width: 44px;
        min-height: 44px;
    }

    .footer-links a {
        padding: 8px 10px;
    }
}

/* Print Styles */
@media print {
    .network-canvas {
        display: none;
    }
    
    footer {
        background: #0f172a;
        page-break-inside: avoid;
    }
    
    .footer-social a {
        border: 1px solid #6366f1;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    footer {
        border-top: 3px solid #6366f1;
    }
    
    .footer-section h3::after {
        height: 4px;
    }

    .footer-links a,
    .footer-contact-item a {
        text-decoration: underline;
    }
    
    .footer-social a {
        border: 2px solid white;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .footer-links a,
    .footer-social a,
    .footer-contact-item a,
    .network-canvas {
        animation: none !important;
        transition: none !important;
    }

    .footer-social a:hover {
        transform: none;
    }

    .footer-links a:hover {
        transform: none;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    footer {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
    .footer-content {
        max-width: 1600px;
    }
}

/* Extra Large Desktop */
@media (min-width: 1441px) {
    .footer-content {
        max-width: 1400px;
    }
}
