* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Futura, 'Trebuchet MS', sans-serif;
	line-height: 1.6;
	background: radial-gradient(ellipse at center, transparent 20%, rgba(244, 251, 255, 0.9) 80%);
	overflow-x: hidden;
}

/* ==================== ADVANCED NAVIGATION BAR ==================== */        
        .navbar-container {
            position: fixed;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - 60px);
            max-width: 1000px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

.roadmap-section {
  position: relative;
  padding: 80px 0;
  background: rgba(244, 251, 255, 0.9);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 520px 1fr;
  gap: 48px;
  align-items: center;
}

.roadmap-left {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.roadmap-eyebrow {
  font-size: 14px;
  color: rgba(5, 28, 44, 0.5);
  letter-spacing: 0.02em;
}

.roadmap-heading {
  font-size: 48px;
  line-height: 1.1;
  color: #051c2c;
  max-width: 520px;
}

.roadmap-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(5, 28, 44, 0.12);
  background: #fff;
  color: rgba(5, 28, 44, 0.7);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(5, 28, 44, 0.08);
}

.roadmap-center {
  display: grid;
  place-items: center;
}

.roadmap-card {
  position: relative;
  width: 520px;
  height: 640px;
  border-radius: 28px;
  background: linear-gradient(180deg, #8bb5de 0%, #a7cdea 45%, #c4def3 100%);
  box-shadow: 0 20px 50px rgba(5, 28, 44, 0.18);
  overflow: hidden;
  padding: 32px;
}

.roadmap-badge {
  position: absolute;
  top: 24px;
  left: 28px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #051c2c;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(6px);
}

.roadmap-card-title {
  margin-top: 72px;
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 16px rgba(5, 28, 44, 0.2);
}

.roadmap-glass-shape {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 200px;
  border-radius: 30px;
  background: radial-gradient(100% 100% at 50% 50%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 60%, rgba(255,255,255,0.05) 100%);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.6), 0 30px 60px rgba(5,28,44,0.25);
  backdrop-filter: blur(16px);
}

.cta-pill {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: radial-gradient(120% 120% at 20% 20%, #c8e0ff 0%, #a5b4ff 30%, #9d6bff 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(157, 107, 255, 0.35);
}

.cta-arrow {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

.roadmap-right {
  display: grid;
  gap: 20px;
  justify-items: start;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.roadmap-steps {
  list-style: none;
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.step {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  position: relative;
  color: rgba(5, 28, 44, 0.35);
  background: #fff;
  box-shadow: 0 6px 16px rgba(5, 28, 44, 0.08);
}

.step-label {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: transparent;
  padding: 0;
  border-radius: 0;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  color: #051c2c;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: none;
}

.step:hover .step-label,
.step.active .step-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(5, 28, 44, 0.2);
  transition: all 0.3s ease;
}

.step.active {
  color: rgba(5, 28, 44, 0.7);
}

.step:hover::before,
.step.active::before {
  border-color: #6085b3;
  animation: rotateStep 4s linear infinite;
}

@keyframes rotateStep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.roadmap-description {
  max-width: 320px;
  color: rgba(5, 28, 44, 0.6);
}

@media screen and (max-width: 1024px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }
  .roadmap-center {
    order: 1;
    width: 100%;
  }
  .roadmap-left {
    order: 2;
    text-align: center;
    justify-items: center;
    position: static;
    top: auto;
  }
  .roadmap-right {
    order: 3;
    justify-items: center;
    text-align: center;
    position: static;
    top: auto;
  }
  .roadmap-card {
    width: 100%;
    max-width: 520px;
    height: auto;
    min-height: 600px;
  }
  .roadmap-heading {
    font-size: 38px;
    max-width: none;
  }
  .roadmap-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 600px) {
  .roadmap-card {
    min-height: 480px;
    padding: 24px;
    border-radius: 20px;
  }
  
  .roadmap-card-title {
    font-size: 32px;
    margin-top: 48px;
  }

  .roadmap-glass-shape {
    width: 90%;
    height: 160px;
  }
  
  .roadmap-heading {
    font-size: 28px;
  }
  
  .roadmap-steps {
    gap: 12px;
  }
  
  .step {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  
  .cta-pill {
    width: 90%;
    justify-content: center;
    bottom: 24px;
  }
}

        .navbar {
            background: rgba(225, 240, 255, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 50px;
            padding: 12px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.1), 
                transparent);
            transition: left 0.8s ease;
        }

        .navbar:hover::before {
            left: 100%;
        }

        .navbar:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        /* ==================== LOGO SECTION ==================== */
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: #051C2C;
            font-weight: 700;
            font-size: 1.4rem;
            z-index: 2;
            position: relative;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            width: 35px;
            height: 35px;
            /*background: rgba(255, 255, 255, 0.9);*/
            background-image: url('./img/icn.png');
            background-size: cover;
            border-radius: 50%;
            animation: logo-pulse 2s ease-in-out infinite;
        }

        .logo {
            width: 150px;
        }

        @keyframes logo-pulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        .brand-text {
            background: linear-gradient(135deg, #051C2C, #011D30);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }        
        
        /* ==================== NAVIGATION LINKS ==================== */
        .navbar-nav {
            display: flex;
            align-items: center;
            gap: 5px;
            list-style: none;
            z-index: 2;
            position: relative;
        }

        /* Desktop navigation styles */
        @media (min-width: 993px) {
            .navbar-nav {
                display: flex !important;
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                background: none !important;
                border: none !important;
                padding: 0 !important;
                box-shadow: none !important;
                flex-direction: row !important;
            }
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            text-decoration: none;
            color: #051C2C;
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 25px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-link:hover::before {
            opacity: 1;
        }

        .nav-link:hover {
            color: #6085b3;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .nav-link.active {
            background: rgba(255, 255, 255, 0.8);
            color: #051C2C;
            box-shadow: 
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.1);
        }        .nav-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        .nav-link:hover .nav-icon {
            transform: scale(1.1);
        }

        /* ==================== MOBILE MENU TOGGLE ==================== */        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 1001;
            position: relative;
            flex-shrink: 0;
        }

        .mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 24px;
            height: 18px;
            justify-content: center;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: #051C2C;
            border-radius: 2px;
            transition: all 0.3s ease;
            display: block;
        }

        .mobile-toggle.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active .hamburger span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-toggle.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }        
        
        /* ==================== CTA BUTTON ==================== */
        .cta-button {
            background: linear-gradient(135deg, #6085b3, #051C2C);
            color: white;
            text-decoration: none;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(96, 133, 179, 0.4);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            white-space: nowrap;
            margin-left: 5px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(96, 133, 179, 0.5);
            background: linear-gradient(135deg, #7095c3, #0a2f4a);
        }

        .cta-button:active {
            transform: scale(0.95) translateY(0);
            box-shadow: 0 2px 10px rgba(96, 133, 179, 0.3);
        }
        
        /* ==================== MOBILE RESPONSIVE ==================== */
        @media (max-width: 992px) {
            .navbar-container {
                top: 20px;
                width: calc(100% - 30px);
            }

            .navbar {
                padding: 12px 20px;
                position: relative;
            }

            .mobile-toggle {
                display: flex !important;
                align-items: center;
                justify-content: center;
            }

            /* Hide desktop navigation on mobile */
            .navbar-nav {
                display: none;
            }

            .brand-text {
                font-size: 1.2rem;
            }
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu Container */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, rgba(135, 206, 235, 0.6), rgba(224, 247, 250, 0.4));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            z-index: 1600;
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        /* Mobile Menu Header */
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 30px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-weight: 700;
            font-size: 1.4rem;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: #051C2C;
            font-size: 2rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
        }

        .mobile-menu-close:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        /* Mobile Menu Navigation */
        .mobile-menu-nav {
            padding: 40px 30px;
            list-style: none;
        }

        .mobile-menu-item {
            margin-bottom: 8px;
        }

        .mobile-menu-link {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            text-decoration: none;
            color: #051C2C;
            font-weight: 500;
            font-size: 1.1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(5, 28, 44, 0.1);
            margin-bottom: 12px;
        }

        .mobile-menu-link:hover,
        .mobile-menu-link.active {
            background: #6085b3;
            color: white;
            transform: translateX(8px);
            border-color: #6085b3;
            box-shadow: 0 4px 15px rgba(96, 133, 179, 0.3);
        }

        .mobile-menu-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .mobile-cta {
            margin: 30px 30px 40px;
        }

        .mobile-cta-button {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #051c2c, #0a2f4a);
            color: white;
            text-decoration: none;
            padding: 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(5, 28, 44, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mobile-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(5, 28, 44, 0.4);
        }

        .mobile-cta-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(120px circle at var(--cloud-x, 50%) var(--cloud-y, 50%), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 60%);
            filter: blur(12px);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .mobile-cta-button:hover::before {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .navbar-container {
                width: calc(100% - 30px);
            }
        }

        @media (max-width: 480px) {
            .navbar-container {
                width: calc(100% - 24px);
                top: 12px;
            }

            .navbar {
                padding: 8px 16px;
                min-height: 56px;
            }

            .navbar-brand {
                gap: 8px;
                font-size: 1.1rem;
                flex-shrink: 1;
                min-width: 0;
            }

            .logo {
                width: 110px;
                max-width: 100%;
                height: auto;
            }

            .logo-icon {
                width: 32px;
                height: 32px;
                flex-shrink: 0;
            }

            .logo-icon::before {
                width: 28px;
                height: 28px;
            }

            .mobile-toggle {
                padding: 8px;
                font-size: 1.4rem;
            }

            .navbar-nav {
                display: none !important;
            }

            .brand-text {
                font-size: 1.1rem;
            }

            .mobile-menu-link {
                padding: 16px 20px;
                font-size: 1rem;
            }

            .mobile-cta-button {
                font-size: 1rem;
                padding: 16px;
            }

            .mobile-menu-header {
                padding: 20px;
            }

            .mobile-menu-close {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }

            .mobile-menu-nav {
                padding: 20px;
            }

            .mobile-cta {
                margin: 20px;
            }
        }

.hero {
	min-height: 100svh;
	background-image: url('./img/bgf.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
}

@supports (height: 100dvh) {
	.hero {
		min-height: 100dvh;
	}
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');*/
}

.hero-content {
	z-index: 1;
	max-width: 800px;
	padding: 0 20px;
}

.hero h1 {
	font-size: 4rem;
	color: #051C2C;
	margin-bottom: 20px;
	margin-top: 13rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	-webkit-animation: fadeInUp 1s ease-out;
	        animation: fadeInUp 1s ease-out;
}

.hero p {
	font-size: 1.3rem;
	color: #051C2C;
	margin-top: 11rem;
	margin-bottom: 30px;
	opacity: 0.9;
	-webkit-animation: fadeInUp 1s ease-out 0.3s both;
	        animation: fadeInUp 1s ease-out 0.3s both;
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	text-align: center;
	-webkit-animation: bounce 2s infinite;
	        animation: bounce 2s infinite;
}

.scroll-indicator p {
	margin-bottom: 10px;
	font-size: 14px;
	opacity: 0.8;
}

.scroll-arrow {
	font-size: 24px;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 100px 0;
	position: relative;
}

.section:nth-child(even) {
	background: #f8f9fa;
}

.section-header {
	text-align: center;
	margin-bottom: 80px;
}

.section-title {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #2c3e50;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-out;
}

.section-title.animate {
	opacity: 1;
	transform: translateY(0);
}

.section-subtitle {
	font-size: 1.2rem;
	color: #7f8c8d;
	max-width: 600px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out 0.2s;
}

.section-subtitle.animate {
	opacity: 1;
	transform: translateY(0);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.card {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	position: relative;
	opacity: 0;
	transform: translateX(-100px);
	transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
	overflow: hidden;
}

.card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	transform: translateX(-100%);
	transition: transform 0.8s ease-out 0.3s;
}

.card.animate {
	opacity: 1;
	transform: translateX(0);
}

.card.animate::before {
	transform: translateX(0);
}

.card:nth-child(even) {
	transform: translateX(100px);
}

.card:nth-child(even).animate {
	transform: translateX(0);
}

.card:nth-child(3n) {
	transform: translateY(100px);
}

.card:nth-child(3n).animate {
	transform: translateY(0);
}

.card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, #667eea, #764ba2);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
}

.card-icon::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s ease;
}

.card.animate .card-icon::after {
	left: 100%;
}

.card-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #2c3e50;
	font-weight: 700;
}

.card-description {
	color: #7f8c8d;
	line-height: 1.7;
	margin-bottom: 25px;
}

.card-link {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
}

.card-link:hover {
	color: #764ba2;
	transform: translateX(5px);
}

.card-link::after {
	content: "→";
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.card-link:hover::after {
	transform: translateX(5px);
}

.timeline {
	position: relative;
	padding: 50px 0;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, #051C2C, #888888);
	transform: translateX(-50%);
}

.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 80px;
	opacity: 0;
	transition: all 0.8s ease-out;
}

.timeline-item.animate {
	opacity: 1;
}

.timeline-item:nth-child(odd) {
	flex-direction: row;
	transform: translateX(-100px);
}

.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
	transform: translateX(100px);
}

.timeline-item.animate {
	transform: translateX(0);
}

/* Timeline Section Background */
.timeline-section {
    background: rgba(244, 251, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.timeline-bg-overlay {
    display: none;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    margin: 0 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.35);
}

.timeline-content h3 {
    color: #051C2C;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.timeline-content::before {
    display: none;
}

.timeline-marker {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #051C2C 0%, #888888 100%);
	border-radius: 50%;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3), 0 0 15px rgba(135, 206, 235, 0.5);
}

.timeline-marker::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(102, 126, 234, 0.5);
    border-top-color: transparent;
    animation: rotateMarker 10s linear infinite;
}

@keyframes rotateMarker {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stats-section {
	background-image: url('./img/bgp2.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.stat-item {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-out;
}

.stat-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.stat-number {
	font-size: 4rem;
	font-weight: 700;
	color: rgba(5, 28, 44, 0.7);
	margin-bottom: 10px;
}

.stat-number-percent::after {
	content: "%";
}

.stat-number-plus::after {
	content: "+";
	margin-left: 0.15em;
}

.about-testimonial {
  margin-top: 5rem;
}

.about-testimonial-sky {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background-image: url('./img/BGpage2.png');
  background-size: cover;
  background-position: center;
  padding: 70px 40px 60px;
}

.about-testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about-testimonial-bubble {
  position: relative;
  width: min(420px, 80vw);
  padding: 26px 28px 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.25));
  box-shadow: 0 24px 60px rgba(5, 28, 44, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: left;
}

.about-testimonial-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(5, 28, 44, 0.6);
  margin-bottom: 10px;
}

.about-testimonial-track {
  position: relative;
  min-height: 120px;
}

.about-testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-testimonial-slide--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.about-testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(5, 28, 44, 0.9);
}

.about-testimonial-meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: rgba(5, 28, 44, 0.75);
}

.about-testimonial-name {
  font-weight: 600;
}

.about-testimonial-role {
  opacity: 0.9;
}

.about-testimonial-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.about-testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-testimonial-avatar::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.7);
  opacity: 0.4;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-testimonial-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #051c2c;
  background-color: rgba(255, 255, 255, 0.9);
}

.about-testimonial-avatar-inner--person1 {
  background-image: url('./img/avatar1.jpg');
}

.about-testimonial-avatar-inner--person2 {
  background-image: url('./img/avatar2.jpg');
}

.about-testimonial-avatar-inner--person3 {
  background-image: url('./img/avatar3.jpg');
}

.about-testimonial-avatar--logo .about-testimonial-avatar-inner {
  font-size: 10px;
  text-transform: lowercase;
}

.about-testimonial-avatar--active::before,
.about-testimonial-avatar:hover::before {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 960px) {
  .about-testimonial-sky {
    padding: 60px 24px 50px;
    border-radius: 32px;
  }

  .about-testimonial-bubble {
    width: min(380px, 90vw);
  }
}

@media (max-width: 640px) {
  .about-testimonial-sky {
    padding: 52px 18px 44px;
    border-radius: 26px;
  }

  .about-testimonial-bubble {
    padding: 22px 22px 26px;
  }

  .about-testimonial-quote {
    font-size: 15px;
  }
}

.stat-label {
	font-size: 1.2rem;
	opacity: 0.9;
    color: #051C2C;
}


/* ==================== FOOTER ==================== */
        .footer {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            margin: 90px auto 5px;
            padding: 25px 40px;
            max-width: 1000px;
            width: calc(100% - 60px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.1), 
                transparent);
            transition: left 0.8s ease;
        }

        .footer:hover::before {
            left: 100%;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: white;
            position: relative;
            z-index: 2;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .footer-logo {
            width: 35px;
            height: 35px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .footer-logo::before {
            content: '';
            position: absolute;
            width: 35px;
            height: 35px;
            background-image: url('./img/icn.png');
            background-size: cover;
            border-radius: 50%;
            animation: logo-pulse 2s ease-in-out infinite;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .footer-link {
            color: #051C2C;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            display: inline-block;
        }

        .footer-link:hover {
            color: #6085b3;
            transform: translateY(-2px);
            text-shadow: 0 0 10px rgba(96, 133, 179, 0.3);
        }
        
        .footer-link:active {
            transform: scale(0.95);
            color: #4a6b91;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #051C2C;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(5, 28, 44, 0.15);
        }

        .social-link:hover {
            background: #6085b3;
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(96, 133, 179, 0.4);
            border-color: #6085b3;
        }

        .social-link:active {
            transform: scale(0.9);
            box-shadow: 0 2px 10px rgba(96, 133, 179, 0.2);
        }

        .social-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .footer-copy {
            text-align: center;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid rgba(5, 28, 44, 0.1);
            color: rgba(5, 28, 44, 0.7);
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .footer {
                width: calc(100% - 30px);
                padding: 20px 25px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-links {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-social {
                justify-content: center;
            }
        }        @media (max-width: 480px) {
            .footer {
                width: calc(100% - 24px);
                padding: 20px 15px;
            }

            .footer-content {
                gap: 25px;
            }

            .footer-links {
                gap: 15px;
                flex-direction: column;
                align-items: center;
                padding: 10px 0;
            }

            .footer-link {
                padding: 12px 20px;
                width: 100%;
                text-align: center;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.5);
                font-size: 1rem;
            }

            .footer-brand {
                gap: 8px;
                justify-content: center;
                flex-shrink: 1;
                min-width: 0;
            }

            .footer-logo {
                width: 32px;
                height: 32px;
                flex-shrink: 0;
            }

            .footer-logo::before {
                width: 28px;
                height: 28px;
            }

            .footer-social {
                gap: 20px;
                margin-top: 10px;
            }

            .social-link {
                width: 44px;
                height: 44px;
            }

            .social-icon {
                width: 20px;
                height: 20px;
            }

            .footer-copy {
                margin-top: 20px;
                padding-top: 15px;
                font-size: 0.8rem;
                padding-bottom: 10px;
            }
        }


@media (max-width: 768px) {
	.hero {
		background-image: url('./img/Image.jpg');
		background-position: center top;
		background-size: cover;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.cards-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.card {
		padding: 30px;
	}

	.timeline::before {
		left: 30px;
	}

	.timeline-item {
		flex-direction: row !important;
		padding-left: 70px;
	}

	.timeline-item:nth-child(even),
	.timeline-item:nth-child(odd) {
		transform: translateX(-50px);
	}

	.timeline-content {
		margin: 0;
	}

	.timeline-content::before {
		left: -30px !important;
		right: auto !important;
		border-right-color: white !important;
		border-left-color: transparent !important;
	}

	.timeline-marker {
		position: absolute;
		left: 21px;
	}

	.stat-number {
		font-size: 3rem;
	}
}



/* PAGE2 */

/* Start Screen */

:root {
	--text-animation-blue-color: #06ffff;
	--text-animation-grey-color: #999999;
}

.start {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100dvh;
    
	background-image: url('./img/bgf.png');
	background-size: cover;
	text-align: center;
	color: white;
}

.start::before {
	content: "";
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translate(-50%, 50%);
	z-index: -1;
	width: 400px;
	height: 160px;
	filter: blur(300px);
	border-radius: 50%;
	background-color: var(--text-animation-blue-color);
}

.start__box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 575px;
	text-align: center;
}

.start__logo {
	display: block;
	width: 300px;
}

.start__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.start__heading {
	margin: 30px 0 0;
	color: white;
	font-size: 4rem;
	line-height: 1.3;
	font-weight: 400;
	text-transform: uppercase;
}

.start__text {
	margin: 10px 0 0;
	font-size: 1.25rem;
	line-height: 1.4;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	color: var(--text-animation-grey-color);
}

@-webkit-keyframes scroll {
	0%,
	100% {
		opacity: 0.25;
		transform: translateY(0);
	}

	50% {
		opacity: 0.5;
		transform: translateY(10px);
	}
}

@keyframes scroll {
	0%,
	100% {
		opacity: 0.25;
		transform: translateY(0);
	}

	50% {
		opacity: 0.5;
		transform: translateY(10px);
	}
}

.scroll-marker {
	position: absolute;
	top: calc(100% + 80px);
	left: calc(50% - 10px);
	margin-top: auto;
	width: 20px;
	-webkit-animation: scroll 2.5s ease infinite;
	        animation: scroll 2.5s ease infinite;
}

.scroll-marker img {
	display: block;
	width: 100%;
	height: auto;
}

/* Text Screen */

.text-animation {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0 5vw;
}

.text-animation__text {
	font-size: 6.5vw;
	line-height: 1.3;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	color: #051c2c;
}

.text-animation__blur {
	position: relative;
	display: inline-block;
}

.text-animation__blur::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	max-width: 13.75vw;
	max-height: 5.6vw;
	border-radius: 50%;
	background-color: var(--text-animation-blue-color);
	filter: blur(6.25vw);
	z-index: 0;
	pointer-events: none;
}

.text-animation__word {
	position: relative;
	display: inline-block;
	transition: color 0.3s ease, opacity 0.3s ease;
	white-space: nowrap;
}

.text-animation__image-wrapper {
	position: relative;
	display: inline-block;
	flex-shrink: 0;
	overflow: hidden;
	margin: 0 0.5vw;
	width: 0;
	max-width: 14vw;
	height: 5.6vw;
	transition: width 0.1s ease-out;
}

.text-animation__animated-img {
	position: absolute;
	top: 0;
	left: 50%;
	width: 14vw;
	height: 100%;
	border-radius: 0.25rem;
	-o-object-fit: cover;
	   object-fit: cover;
	transform: translateX(-50%);
}

.text-animation__reveal {
	position: absolute;
	top: 0;
	z-index: 2;
	width: 50%;
	height: 100%;
	pointer-events: none;
}

.text-animation__reveal.left {
	left: 0;
}

.text-animation__reveal.right {
	right: 0;
}

/* Final Screen */

.final {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 0 5vw;
	padding: 2vw 0;
}

.final__bottom-text {
	align-self: flex-end;
	margin: 3.75vw 0;
	max-width: 35vw;
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	color: var(--text-animation-grey-color);
}

.final__bottom-text span {
	display: inline-block;
	background-color: white;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	transition: background-color 0.3s, color 0.3s;
}

/* Responsive */

@media screen and (max-width: 1024px) {
	.text-animation {
		margin: 0 auto;
	}

	.text-animation__text {
		font-size: 7.35vw;
	}

	.final {
		padding: 60px 0 180px;
		margin: 0 auto;
	}

	.final__bottom-text {
		font-size: 1.5rem;
		max-width: 100%;
		text-align: center;
	}
}

@media screen and (max-width: 575px) {
	.start__box {
		max-width: 100%;
	}

	.start__heading {
		font-size: 2.5rem;
	}

	.start__text {
		font-size: 1rem;
	}

	.final__bottom-text {
		font-size: 1rem;
		font-weight: 400;
	}
}

/*page 2*/
.hero1 {
            min-height: 100svh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background-image: url('./img/bgf.png');
            background-repeat: no-repeat;
            background-position: center;
	        background-size: cover;
            padding: 100px 0;
        }
        
        @supports (height: 100dvh) {
          .hero1 { min-height: 100dvh; }
        }
        
        @media (max-width: 1024px) {
          .hero1 {
            padding: 80px 0;
            background-position: center top;
          }
        }
        
        @media (max-width: 768px) {
          .hero1 {
            padding: 60px 0;
            background-position: center top;
          }
        }

        @media (max-width: 480px) {
          .hero1 {
            background-image: url('img/Mobile.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
          }
        }
        
        /* Geometric background pattern */
        .geometric-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.04;
        }
        
        .geo-circle {
            position: absolute;
            border: 1px solid #fff;
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }
        
        .geo-circle:nth-child(1) {
            width: 400px;
            height: 400px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .geo-circle:nth-child(2) {
            width: 600px;
            height: 600px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 2s;
        }
        
        .geo-circle:nth-child(3) {
            width: 800px;
            height: 800px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 4s;
        }
        
        @keyframes pulse {
            0%, 100% { 
                opacity: 0.04;
                transform: translate(-50%, -50%) scale(1);
            }
            50% { 
                opacity: 0.08;
                transform: translate(-50%, -50%) scale(1.05);
            }
        }
        
        /* Diamond shapes in corners */
        .diamond-ornament {
            position: absolute;
            width: 15px;
            height: 15px;
            background: transparent;
            border: 1px solid rgba(5, 28, 44, 0.15);
            transform: rotate(45deg);
            animation: rotateDiamond 10s linear infinite;
        }
        
        .diamond-ornament:nth-child(1) {
            top: 60px;
            left: 60px;
        }
        
        .diamond-ornament:nth-child(2) {
            top: 60px;
            right: 60px;
            animation-delay: 2.5s;
        }
        
        .diamond-ornament:nth-child(3) {
            bottom: 60px;
            left: 60px;
            animation-delay: 5s;
        }
        
        .diamond-ornament:nth-child(4) {
            bottom: 60px;
            right: 60px;
            animation-delay: 7.5s;
        }
        
        @keyframes rotateDiamond {
            0%, 100% { transform: rotate(45deg); }
            50% { transform: rotate(135deg); }
        }
        
        /* Vertical dividers */
        .vertical-divider {
            position: absolute;
            width: 1px;
            height: 60%;
            top: 20%;
            background: linear-gradient(to bottom, transparent, rgba(5, 28, 44, 0.3), transparent);
        }
        
        .vertical-divider:nth-child(1) {
            left: 25%;
            animation: fadeInOut 6s ease-in-out infinite;
        }
        
        .vertical-divider:nth-child(2) {
            right: 25%;
            animation: fadeInOut 6s ease-in-out infinite 3s;
        }
        
        @keyframes fadeInOut {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.5; }
        }
        
        /* Atmospheric fog */
        .fog {
            position: absolute;
            width: 200%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 20%, rgba(244, 251, 255, 0.9) 80%);
            animation: fogMove 20s ease-in-out infinite;
        }
        
        @keyframes fogMove {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-25%); }
        }
        
        /* Content container */
        .hero1-content {
            text-align: center;
            z-index: 10;
            position: relative;
            max-width: 900px;
            padding: 0 40px;
        }
        
        /* Top ornamental symbol */
        .top-symbol {
            font-size: 28px;
            color: rgba(5, 28, 44, 0.6);
            margin-bottom: 35px;
            opacity: 0;
            animation: symbolAppear 1.5s ease forwards 0.2s;
            filter: drop-shadow(0 0 15px rgba(5, 28, 44, 0.4));
        }
        
        @keyframes symbolAppear {
            from {
                opacity: 0;
                transform: translateY(-30px) rotate(-180deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotate(0deg);
            }
        }
        
        /* Pre-title */
        .pre-title {
            font-size: 10px;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: #051c2c;
            margin-bottom: 25px;
            opacity: 0;
            animation: textFadeIn 1.2s ease forwards 0.5s;
            font-family: 'Cinzel', serif;
            font-weight: 400;
        }
        
        @keyframes textFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Main title */
.hero1 h1 {
            font-family: "Futura", "Futura PT", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            font-size: clamp(60px, 10vw, 110px);
            font-weight: 400;
            letter-spacing: 18px;
            margin-bottom: 20px;
            opacity: 0;
            animation: titleReveal 1.5s ease forwards 0.8s;
            color: #fff;
            text-shadow: 
                0 0 40px rgba(5, 28, 44, 0.5),
                0 5px 20px rgba(0, 0, 0, 0.8);
            position: relative;
        }
        
        @keyframes titleReveal {
            from {
                opacity: 0;
                transform: translateY(40px);
                letter-spacing: 30px;
            }
            to {
                opacity: 1;
                transform: translateY(0);
                letter-spacing: 18px;
            }
        }
        
        /* Horizontal accent line */
        .accent-line {
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(5, 28, 44, 0.8), transparent);
            margin: 35px auto;
            position: relative;
            opacity: 0;
            animation: lineExpand 1.5s ease forwards 1.1s;
        }
        
        .accent-line::before,
        .accent-line::after {
            content: '◆';
            position: absolute;
            top: -7px;
            font-size: 14px;
            color: rgba(5, 28, 44, 0.8);
        }
        
        .accent-line::before {
            left: -20px;
        }
        
        .accent-line::after {
            right: -20px;
        }
        
        @keyframes lineExpand {
            from {
                opacity: 0;
                width: 0;
            }
            to {
                opacity: 1;
                width: 200px;
            }
        }
        
        /* Subtitle/Description */
        .description {
            font-size: clamp(16px, 2vw, 21px);
            line-height: 2;
            font-style: italic;
            color: #051c2c;
            margin-bottom: 40px;
            opacity: 0;
            animation: textFadeIn 1.2s ease forwards 1.4s;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: 1px;
        }
        
        /* Bottom symbol */
        .bottom-symbol {
            font-size: 28px;
            color: rgba(5, 28, 44, 0.5);
            margin-top: 50px;
            opacity: 0;
            animation: symbolAppear 1.5s ease forwards 1.7s;
            filter: drop-shadow(0 0 10px rgba(5, 28, 44, 0.3));
        }
        
        /* Floating dust particles */
        .dust-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .dust {
            position: absolute;
            width: 1px;
            height: 1px;
            background: rgba(5, 28, 44, 0.3);
            border-radius: 50%;
            animation: dustFloat 20s infinite linear;
            box-shadow: 0 0 5px rgba(5, 28, 44, 0.3);
        }
        
        .dust:nth-child(1) { left: 15%; animation-delay: 0s; animation-duration: 18s; }
        .dust:nth-child(2) { left: 25%; animation-delay: 3s; animation-duration: 22s; }
        .dust:nth-child(3) { left: 35%; animation-delay: 6s; animation-duration: 20s; }
        .dust:nth-child(4) { left: 45%; animation-delay: 2s; animation-duration: 24s; }
        .dust:nth-child(5) { left: 55%; animation-delay: 5s; animation-duration: 19s; }
        .dust:nth-child(6) { left: 65%; animation-delay: 8s; animation-duration: 21s; }
        .dust:nth-child(7) { left: 75%; animation-delay: 4s; animation-duration: 23s; }
        .dust:nth-child(8) { left: 85%; animation-delay: 7s; animation-duration: 17s; }
        
        @keyframes dustFloat {
            0% {
                bottom: -5%;
                opacity: 0;
                transform: translateX(0);
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                bottom: 105%;
                opacity: 0;
                transform: translateX(100px);
            }
        }
        
        /* Ink drops falling slowly */
        .ink-drop {
            position: absolute;
            top: -10%;
            width: 2px;
            height: 0;
            background: linear-gradient(to bottom, transparent, rgba(5, 28, 44, 0.4));
            animation: inkFall 8s ease-in infinite;
        }
        
        .ink-drop:nth-child(1) { left: 18%; animation-delay: 0s; }
        .ink-drop:nth-child(2) { left: 45%; animation-delay: 3s; }
        .ink-drop:nth-child(3) { left: 72%; animation-delay: 6s; }
        .ink-drop:nth-child(4) { left: 88%; animation-delay: 2s; }
        
        @keyframes inkFall {
            0% {
                height: 0;
                top: -10%;
                opacity: 0;
            }
            20% {
                height: 150px;
                opacity: 0.6;
            }
            100% {
                top: 110%;
                height: 150px;
                opacity: 0;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 50px;
                letter-spacing: 10px;
            }
            
            .diamond-ornament {
                width: 12px;
                height: 12px;
            }
            
            .diamond-ornament:nth-child(1),
            .diamond-ornament:nth-child(2),
            .diamond-ornament:nth-child(3),
            .diamond-ornament:nth-child(4) {
                top: 30px;
                bottom: 30px;
                left: 30px;
                right: 30px;
            }
            
            .diamond-ornament:nth-child(1) { top: 30px; left: 30px; }
            .diamond-ornament:nth-child(2) { top: 30px; right: 30px; }
            .diamond-ornament:nth-child(3) { bottom: 30px; left: 30px; }
            .diamond-ornament:nth-child(4) { bottom: 30px; right: 30px; }
        }


/* ==================== VISION TEXT REVEAL SECTION ==================== */
.vision-reveal-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(244, 251, 255, 0.9) 80%);
  padding: 120px 40px;
  position: relative;
}

.vision-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.vision-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
}

.vision-text2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 4.5vw, 45px);
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
}

.reveal-word {
  display: inline-block;
  color: #6085b3;
  opacity: 0.25;
  transition: opacity 0.4s ease, color 0.4s ease;
  margin-right: 0.2em;
}

.reveal-word.highlight {
  color: #a8c4e0;
}

.reveal-word.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .vision-reveal-section {
    padding: 80px 24px;
    min-height: auto;
  }
  
  .vision-text {
    font-size: clamp(22px, 6vw, 32px);
    line-height: 1.4;
  }
}

/* ==================== OUR PROCESS SECTION ==================== */
.our-process-section {
  padding: 120px 0;
  background-color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

.our-process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.our-process-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.process-eyebrow {
  font-size: 16px;
  font-weight: 500;
  color: #4A6072;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.process-heading {
  font-size: 48px;
  font-weight: 500;
  color: #2D3E50;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.process-subheading {
  color: #4A6072;
  font-size: 18px;
  line-height: 1.6;
}

.process-cards-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0; /* Changed to 0 to manage spacing via margins/sticky */
  position: relative;
  width: 100%;
}

.glass-card {
  background: linear-gradient(180deg, #A0C0D4 0%, #8CAEC4 100%);
  position: sticky;
  top: 10vh; /* Base sticky position */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 420px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
  margin-bottom: 32vh; /* Create space for the next card to scroll up */
}

.glass-card:last-child {
  margin-bottom: 0;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 0;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.timeline-tag {
  margin-bottom: 2rem;
}

.timeline-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.process-card-title {
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.asset-wrapper {
  flex-grow: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.glass-card:hover .asset-wrapper {
  transform: scale(1.05);
}

.asset-wrapper img {
  width: 240px;
  height: 150px;
  object-fit: contain;
}

.process-card-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  opacity: 0.9;
}

.process-footer {
  margin-top: 6rem;
  text-align: center;
}

.process-footer p {
  color: rgba(74, 96, 114, 0.6);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Clarity Section */
.accordion-body {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
  padding: 20px;
  color: #051C2C;
}

.clarity-section {
  background-image: url('./img/BGabout.jpeg');
  background-size: cover;
  background-position: center;
  padding: 60px 0 140px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.clarity-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 196, 224, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.clarity-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clarity-header {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
}

.clarity-title {
  font-size: clamp(48px, 8vw, 84px);
  margin-bottom: 12px;
  font-weight: 300;
  letter-spacing: -0.03em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25em;
  line-height: 1.1;
}

.clarity-title .reveal-word {
  color: #fff;
  opacity: 0.1;
  transform: translateY(20px);
  filter: blur(5px);
  transition: all 0.8s ease-in-out;
}

.clarity-title .reveal-word.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.clarity-subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.clarity-grid-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clarity-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

.clarity-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 48px;
  padding: 64px 48px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
}

.clarity-card.active {
  opacity: 1;
  pointer-events: auto;
}

.clarity-card-icon {
  width: 64px;
  height: 64px;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0.9;
}

.clarity-card-icon svg {
  width: 100%;
  height: 100%;
}

.clarity-card-title {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.clarity-card-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.clarity-section--about .clarity-container {
  max-width: 1200px;
}

.clarity-section--about .clarity-header {
  margin-bottom: 40px;
}

.about-why-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 32px;
  margin-top: 40px;
}

.about-why-item {
  background: rgba(5, 28, 44, 0.8);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out, box-shadow 0.3s ease;
}

.about-why-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.about-why-item:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transform: translateY(-4px);
}

.about-why-index {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(168, 196, 224, 0.9);
}

.about-why-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.about-why-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(221, 232, 245, 0.85);
}

@media (max-width: 1024px) {
  .about-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-why-item {
    padding: 20px 18px;
  }
}

@media (max-width: 768px) {
  .clarity-section {
    padding: 100px 20px;
  }
  
  .clarity-title {
    font-size: 48px;
  }
  
  .clarity-card {
    padding: 48px 32px;
    border-radius: 32px;
  }
  
  .clarity-card-title {
    font-size: 28px;
  }

  .clarity-grid-wrapper {
    height: 500px;
  }
}

.cloud-stat-section {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #9fd5ff 0%, #60aef7 40%, #ffffff 100%);
}

.cloud-stat-background {
  position: absolute;
  inset: 0;
  background-image: url('./img/BGpage2.png');
  background-size: cover;
  background-position: center bottom;
  opacity: 0.85;
}

.cloud-stat-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.9), transparent 60%);
  mix-blend-mode: screen;
}

.cloud-stat-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.cloud-stat-ring {
  position: relative;
  width: min(240px, 50vw);
  height: min(240px, 50vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  background: transparent;
  animation: cloud-ring-rotate 20s linear infinite;
}

.cloud-stat-inner {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  animation: cloud-ring-counter-rotate 20s linear infinite;
}

.cloud-stat-number {
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cloud-stat-label {
  margin-top: 8px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 300;
  opacity: 0.9;
}

.cloud-stat-orbit {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

.cloud-stat-orbit--top {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.cloud-stat-orbit--right {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.cloud-stat-orbit--bottom {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes cloud-ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes cloud-ring-counter-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@media (max-width: 768px) {
  .cloud-stat-section {
    min-height: 320px;
  }

  .cloud-stat-content {
    padding: 60px 16px;
  }
}

.cloud-cta-section {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #9fd5ff 0%, #60aef7 40%, #ffffff 100%);
}

.cloud-cta-background {
  position: absolute;
  inset: 0;
  background-image: url('./img/BGpage2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.cloud-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.85), transparent 60%);
}

.cloud-cta-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  padding: 60px 32px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cloud-cta-orb {
  width: min(460px, 80vw);
  padding: 28px 30px 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.25));
  box-shadow: 0 26px 70px rgba(5, 28, 44, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
}

.cloud-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(5, 28, 44, 0.6);
  margin-bottom: 10px;
}

.cloud-cta-title {
  font-size: 18px;
  font-weight: 500;
  color: rgba(5, 28, 44, 0.9);
  margin-bottom: 16px;
}

.cloud-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a472ff, #5f8dff);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(86, 115, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cloud-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(86, 115, 255, 0.7);
}

.cloud-cta-arrow {
  font-size: 16px;
}

.cloud-cta-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cloud-cta-avatars,
.cloud-cta-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cloud-cta-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(5, 28, 44, 0.4);
  position: relative;
}

.cloud-cta-avatar::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.8);
  opacity: 0.7;
}

.cloud-cta-avatar--person {
  background-image: url('./img/avatar1.jpg');
  background-size: cover;
  background-position: center;
}

.cloud-cta-logo {
  min-width: 80px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(5, 28, 44, 0.35);
  font-size: 12px;
  font-weight: 600;
  color: #051c2c;
  text-align: center;
}

@media (max-width: 900px) {
  .cloud-cta-inner {
    align-items: center;
    text-align: center;
  }

  .cloud-cta-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .cloud-cta-inner {
    padding: 50px 18px 40px;
  }

  .cloud-cta-orb {
    width: min(380px, 90vw);
    padding: 24px 22px 26px;
  }

  .cloud-cta-title {
    font-size: 16px;
  }
}


/*Contact Form*/
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); 
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 255, 0.9));
    margin: 10% auto; 
    padding: 40px; 
    border: 1px solid rgba(255, 255, 255, 0.8); 
    width: 90%; 
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(5, 28, 44, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #051C2C;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 20px;
    transition: color 0.3s ease;
    line-height: 1;
    opacity: 0.6;
}

.close-modal:hover,
.close-modal:focus {
    color: #6085b3;
    text-decoration: none;
    opacity: 1;
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #051C2C;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #051C2C;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(96, 133, 179, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #051C2C;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6085b3;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(96, 133, 179, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6085b3, #051C2C);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(96, 133, 179, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #7095c3, #0a2f4a);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(96, 133, 179, 0.4);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
    }
}

/* ==================== PILLARS CAROUSEL SECTION ==================== */
.pillars-carousel-section {
    /*background: linear-gradient(180deg, #A4C8F0 0%, #D4E8F9 100%);*/
    background: radial-gradient(ellipse at center, transparent 20%, rgba(244, 251, 255, 0.9) 80%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Add some cloud-like shapes or overlay if needed, for now gradient is good base */

.pillars-carousel-section .process-heading,
.pillars-carousel-section .process-subheading,
.pillars-carousel-section .process-eyebrow {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pillars-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.pillars-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 40px 0; /* Full width with no massive side padding */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    width: 100%;
    cursor: grab; /* Indicate draggable */
    
}

.pillars-carousel.active {
    cursor: grabbing;
    scroll-snap-type: none; /* Disable snap while dragging for smoother experience */
}

.pillars-carousel .pillar-card:first-child {
    margin-left: 5vw; /* Add left margin to first card for aesthetic start */
}

.pillars-carousel .pillar-card:last-child {
    margin-right: 5vw; /* Add right margin to last card */
}

.pillars-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.pillar-card {
    flex: 0 0 320px;
    height: 400px;
    padding: 40px 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align top as per image */
    position: relative;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

/* Glassmorphism for pillars */
.glass-pillar {
    /*background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));*/
    background: radial-gradient(ellipse at center, transparent 20%, rgba(244, 251, 255, 0.9) 80%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 70, 120, 0.15);
}

.glass-pillar:hover {
    transform: translateY(-10px);
}

.pillar-title {
    font-size: 22px;
    font-weight: 500;
    color: #6085b3;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pillar-desc {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    color:#6085b3;
    margin-bottom: auto;
}

.pillar-number {
    align-self: center;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: monospace; /* Or similar technical font */
    color: #6085b3;
    font-size: 14px;
    letter-spacing: 0.1em;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .pillars-carousel-wrapper {
        padding: 0;
    }
    
    .pillar-card {
        flex: 0 0 280px;
        height: 420px;
    }
    
    .carousel-btn {
        display: none; /* Hide arrows on mobile, rely on swipe */
    }
}

/*PAGE 4*/
.scroll-container-parent {
  position: relative;
  height: 600vh;
  width: 100%;
  overflow: hidden;
  background: rgba(244, 251, 255, 0.9);
}
.sticky-heading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 0;
  width: 100%;
  pointer-events: none;
  color: #6085b3;
  opacity: 0.25;
  font-family: "Bai Jamjuree";
  font-size: 68px;
  font-style: normal;
  font-weight: 600;
  line-height: 83px;
  transition: opacity 0.3s ease;
  overflow: hidden !important;
}
.scroll-container {
  display: flex;
  position: fixed;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);

  width: 100%;
  gap: 32px;
  padding: 0 5%;
  box-sizing: border-box;
  transition: right 2s ease, transform 0.3s ease;
  z-index: 0;
  /* NEW: Added containment properties */
  contain: layout style;

  max-width: 100vw;
  will-change: transform;
}

.panel {
  flex: 0 0 auto;
  
  width: 100%;
  max-width: 420px;
  min-height: 480px;
  
  align-items: center;
  text-align: justify;
  
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 2rem;
  box-sizing: border-box;
  margin: 0 40px;
  contain: layout paint;
  will-change: transform, opacity, filter;
  background: linear-gradient(180deg, #A0C0D4 0%, #8CAEC4 100%);

  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel h3 {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Bai Jamjuree";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
}
.panel img {
  width: 360px;
  height: 160px;
  border-radius: 8px;
  background: transparent;
  object-fit: cover;
}
.panel h2 {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Bai Jamjuree";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 33px;
  padding-bottom: 20px;
  display: inline-block;
  width: max-content;
}
.panel p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Bai Jamjuree";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: underline;
  text-transform: uppercase;
}

/* Responsive Styles for Panel Scroll Section */
@media (max-width: 1200px) {
  .sticky-heading {
    font-size: 56px;
    line-height: 1.2;
  }
}

@media (max-width: 992px) {
  .panel {
    width: 320px;
    height: 480px;
    padding: 24px;
  }
  
  .panel h2 {
    font-size: 28px;
  }
  
  .panel img {
    width: 100%;
    height: 140px;
  }
  
  .sticky-heading {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .scroll-container-parent {
    height: 400vh; /* Reduce scroll distance on mobile */
  }

  .scroll-container {
    gap: 20px;
    padding: 0 20px;
  }

  .panel {
    width: 280px;
    height: 420px;
    padding: 20px;
  }
  
  .panel h2 {
    font-size: 24px;
    padding-bottom: 15px;
  }
  
  .panel h3 {
    font-size: 15px;
    line-height: 1.4;
  }
  
  .panel img {
    height: 120px;
  }
  
  .sticky-heading {
    font-size: 32px;
    width: 90%;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .panel {
    width: 85vw; /* Make it almost full width on very small screens */
    height: auto;
    min-height: 400px;
  }
  
  .sticky-heading {
    font-size: 28px;
  }
}


.loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('./img/loaderbg.png');
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: all 0.8s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
            animation: loaderFadeIn 1s ease-out;
        }

        @keyframes loaderFadeIn {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loader-logo {
            font-size: 2.5rem;
            font-weight: 500;
            background:#051C2C;
            font-family: "Futura", "Futura PT", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            animation: logoGlow 2s ease-in-out infinite alternate;
        }

        @keyframes logoGlow {
            0% {
                filter: drop-shadow(0 0 10px rgba(175, 206, 252, 0.3));
            }
            100% {
                filter: drop-shadow(0 0 20px rgba(43, 45, 63, 0.6));
            }
        }

        .loader-spinner {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            position: relative;
        }

        .loader-spinner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 3px solid rgba(198, 221, 254, 0.1);
            border-top: 3px solid #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loader-spinner::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            width: 60px;
            height: 60px;
            border: 3px solid rgba(43, 45, 63, 0.1);
            border-top: 3px solid #fff;
            border-radius: 50%;
            animation: spinReverse 1.5s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes spinReverse {
            0% {
                transform: rotate(360deg);
            }
            100% {
                transform: rotate(0deg);
            }
        }

        .loader-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            animation: textPulse 2s ease-in-out infinite;
        }

        @keyframes textPulse {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        .loader-progress {
            width: 200px;
            height: 3px;
            background: rgba(43, 45, 63, 0.1);
            border-radius: 3px;
            margin: 1.5rem auto 0;
            overflow: hidden;
            position: relative;
        }

        .loader-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #051C2C, #051C2C);
            border-radius: 3px;
            width: 0%;
            animation: progressFill 3s ease-in-out;
        }

        @keyframes progressFill {
            0% {
                width: 0%;
            }
            100% {
                width: 100%;
            }
        }

        .loader-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #051C2C;
            border-radius: 50%;
            animation: particleFloat 4s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            top: 60%;
            left: 20%;
            animation-delay: 0.5s;
        }

        .particle:nth-child(3) {
            top: 30%;
            right: 15%;
            animation-delay: 1s;
        }

        .particle:nth-child(4) {
            bottom: 25%;
            right: 25%;
            animation-delay: 1.5s;
        }

        .particle:nth-child(5) {
            bottom: 40%;
            left: 15%;
            animation-delay: 2s;
        }

        @keyframes particleFloat {
            0%, 100% {
                transform: translateY(0px) scale(0.8);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) scale(1.2);
                opacity: 1;
            }
        }


/*6 STEPS*/
.tl-container {
  max-width: 1200px;
  margin: 0 auto;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(244, 251, 255, 0.9) 80%);
}

.tl-card {
  scale: 0;
  opacity: 0;
  border: none;
  border-radius: 0;
  
  overflow: hidden;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: 200px 350px;

  border-radius: 32px;
  background: linear-gradient(180deg, #A0C0D4 0%, #8CAEC4 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.left::before {
  scale: 0;
  opacity: 0;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: 200px 350px;
}

.right::before {
  scale: 0;
  opacity: 0;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range: 200px 350px;
}

.origin-left {
  transform-origin: 0% 0%;
}

.origin-right {
  transform-origin: 100% 0%;
}

@keyframes fade-in {
  to {
    scale: 1;
    opacity: 1;
  }
}

.tl-img-container {
  width: 100%;
  height: 200px;
  filter: saturate(40%);
  transition: all 0.4s ease;

  border-radius: 8px;
  background: transparent;
}

.tl-card:hover .scale {
  filter: saturate(100%);
  transform: scale(1.1);
}

.image-1 {
  background: url("./img/4.png") 50% 50%
    no-repeat;
  background-size: cover;
}

.image-2 {
  background: url("./img/6.png") 50% 50% no-repeat;
  background-size: cover;
}

.image-3 {
  background: url("./img/5.png") 50% 50%
    no-repeat;
  background-size: cover;
}

.image-4 {
  background: url("./img/2.png") 50% 50%
    no-repeat;
  background-size: cover;
}

.image-5 {
  background: url("./img/3.png") 50% 50%
    no-repeat;
  background-size: cover;
}

.image-6 {
  background: url("./img/7.png") 50% 50%
    no-repeat;
  background-size: cover;
}

/* The actual timeline (the vertical ruler) */
.main-tl {
  position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-tl::after {
  content: "";
  position: absolute;
  width: 0px;
  border: 1px dashed DarkGrey;
  background-color: none;
  top: 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  transition: height 2s ease-out;
}

.main-tl.animate::after {
  height: 100%;
}

/* Container around content */
.tl {
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.tl::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid #f0f2f5;
  outline: 1px solid DarkGrey;
  right: -8px;
  background-color: DarkGrey;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  padding: 10px 40px 20px 0px;
  left: 0;
}

/* Place the container to the right */
.right {
  padding: 10px 0px 20px 40px;
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: linear-gradient(180deg, #A0C0D4 0%, #8CAEC4 100%);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: "";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: linear-gradient(180deg, #A0C0D4 0%, #8CAEC4 100%);
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -14px;
}

.accordion-button {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px !important;
  color: #051C2C;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: rgba(96, 133, 179, 0.9);
  color: white;
  box-shadow: 0 8px 20px rgba(96, 133, 179, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 15px 15px 0 0 !important;
}

.accordion-button:hover:not(.collapsed) {
    background: rgba(96, 133, 179, 1);
}

.accordion-button:hover.collapsed {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.accordion-button:after {
  margin: 0;
  margin-left: 15px;
}

.accordion-button:not(.collapsed):after {
  filter: invert(100%) brightness(200%);
}

.accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 10px;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  border-radius: 0 0 15px 15px;
  color: #051C2C;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-footer {
  background-color: White;
  border-bottom: 5px solid white;
}

.icon-link {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid DimGrey;
  border-radius: 50%;
  margin: 0;
  transition: scale 0.3s ease;
  text-decoration: none;
  & i {
    color: DimGrey;
  }
}

@media (hover: hover) {
  .icon-link:hover {
    border: 1px solid #6085b3;
    scale: 1.15;
  }
  .icon-link:hover i {
    color: #6085b3;
  }
}

/* Media queries - Responsive timeline on screens less than 600px wide */

@media screen and (max-width: 700px) {
  /* Place the timelime to the left */
  .main-tl::after {
    left: 10px;
  }

  /* Full-width containers */
  .tl {
    width: 100%;
    padding-left: 40px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .tl::before {
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: -4px;
  }

  .left::before {
    right: auto;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }

  .tl-card {
    transform-origin: 0% 0%;
  }
}

/* ==================== COMPREHENSIVE MOBILE RESPONSIVE ==================== */

/* Performance: reduce heavy effects on mobile */
@media (max-width: 768px) {
  .fog {
    display: none;
  }

  .dust-particles {
    display: none;
  }

  .ink-drop {
    display: none;
  }

  .geo-circle {
    animation: none;
  }

  .diamond-ornament {
    animation: none;
  }

  .vertical-divider {
    display: none;
  }

  .navbar::before {
    display: none;
  }

  .footer::before {
    display: none;
  }

  /* Reduce backdrop-filter intensity on mobile for performance */
  .glass-card,
  .panel,
  .tl-card,
  .accordion-body,
  .accordion-button {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .navbar {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

/* --- Roadmap section responsive --- */
@media (max-width: 768px) {
  .roadmap-section {
    padding: 60px 0;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  .roadmap-left {
    order: 1;
    position: static;
    text-align: center;
    justify-items: center;
  }

  .roadmap-center {
    order: 2;
    width: 100%;
  }

  .roadmap-right {
    order: 3;
    position: static;
    text-align: center;
    justify-items: center;
  }

  .roadmap-heading {
    font-size: 28px;
    max-width: none;
  }

  .roadmap-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .step {
    width: 44px;
    height: 44px;
  }

  .step-label {
    display: none;
  }

  .roadmap-description {
    max-width: none;
  }
}

/* --- Glass card stack responsive --- */
@media (max-width: 768px) {
  .process-cards-stack {
    padding: 0 8px;
  }

  .glass-card {
    max-width: 100%;
    min-height: 380px;
    padding: 1.5rem;
    border-radius: 24px;
    margin-bottom: 24vh;
  }

  .process-card-title {
    font-size: 24px;
  }

  .process-card-description {
    font-size: 13px;
  }

  .asset-wrapper img {
    width: 180px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .glass-card {
    min-height: 340px;
    padding: 1.25rem;
    border-radius: 20px;
    margin-bottom: 20vh;
  }

  .process-card-title {
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .asset-wrapper img {
    width: 150px;
    height: 90px;
  }

  .timeline-tag {
    margin-bottom: 1rem;
  }

  .timeline-text {
    font-size: 11px;
  }
}

/* --- Stats section responsive --- */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* --- Vision section responsive --- */
@media (max-width: 480px) {
  .vision-reveal-section {
    padding: 60px 16px;
  }

  .vision-text {
    font-size: clamp(20px, 5.5vw, 28px);
    line-height: 1.5;
  }
}

/* --- Hero1 responsive --- */
@media (max-width: 480px) {
  .hero1-content {
    padding: 0 20px;
  }

  .hero1 h1 {
    font-size: clamp(40px, 12vw, 60px);
    letter-spacing: 8px;
  }

  .pre-title {
    font-size: 9px;
    letter-spacing: 5px;
  }

  .description {
    font-size: 16px;
    line-height: 1.7;
  }

  .accent-line {
    width: 120px;
    margin: 20px auto;
  }

  @keyframes lineExpand {
    from { opacity: 0; width: 0; }
    to { opacity: 1; width: 120px; }
  }

  .top-symbol,
  .bottom-symbol {
    font-size: 20px;
  }
}

/* --- 6 Steps timeline responsive --- */
@media (max-width: 480px) {
  .tl-container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .tl-container .section-header {
    margin-bottom: 40px;
  }

  .tl-container .section-title {
    font-size: 1.8rem;
  }

  .tl-container .section-subtitle {
    font-size: 1rem;
  }

  .tl-card {
    border-radius: 20px;
  }

  .tl-img-container {
    height: 150px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 12px !important;
  }

  .accordion-body {
    border-radius: 0 0 12px 12px;
    padding: 12px;
  }

  .accordion-body p {
    font-size: 13px;
  }
}

/* --- Panel carousel section responsive --- */
@media (max-width: 480px) {
  .scroll-container-parent {
    height: 350vh;
  }

  .scroll-container {
    gap: 16px;
    padding: 0 12px;
  }

  .panel {
    width: 80vw;
    min-height: 360px;
    padding: 1.25rem;
    margin: 0 8px;
    border-radius: 24px;
  }

  .panel h2 {
    font-size: 22px;
    padding-bottom: 12px;
  }

  .panel h3 {
    font-size: 14px;
    line-height: 1.4;
  }

  .panel img {
    width: 100%;
    height: 100px;
    border-radius: 6px;
  }

  .sticky-heading {
    font-size: 24px;
    line-height: 1.2;
    width: 90%;
  }
}

@media (max-width: 360px) {
  .panel {
    width: 85vw;
    min-height: 340px;
    padding: 1rem;
  }

  .panel h2 {
    font-size: 20px;
  }

  .panel h3 {
    font-size: 13px;
  }

  .sticky-heading {
    font-size: 20px;
  }
}

/* --- Clarity section responsive --- */
@media (max-width: 480px) {
  .clarity-section {
    padding: 60px 16px 100px;
    min-height: auto;
  }

  .clarity-title {
    font-size: 36px;
  }

  .clarity-card {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .clarity-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
  }

  .clarity-card-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .clarity-card-text {
    font-size: 15px;
  }

  .clarity-grid-wrapper {
    height: 420px;
    max-width: 100%;
  }

  .clarity-subtitle {
    font-size: 16px;
  }
}

/* --- Section headers responsive --- */
@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* --- About why grid responsive --- */
@media (max-width: 480px) {
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-why-item {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .about-why-title {
    font-size: 17px;
  }

  .about-why-text {
    font-size: 14px;
  }
}

/* --- Pillars carousel responsive --- */
@media (max-width: 480px) {
  .pillars-carousel-section {
    padding: 60px 0;
  }

  .pillar-card {
    flex: 0 0 260px;
    height: 380px;
    padding: 28px 20px;
    border-radius: 24px;
  }

  .pillar-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .pillar-desc {
    font-size: 13px;
  }
}

/* --- Very small screens (320px) --- */
@media (max-width: 320px) {
  .navbar-container {
    width: calc(100% - 16px);
    top: 8px;
  }

  .navbar {
    padding: 6px 12px;
    min-height: 48px;
    border-radius: 30px;
  }

  .logo {
    width: 90px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .hero1 h1 {
    font-size: 36px;
    letter-spacing: 6px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .roadmap-heading {
    font-size: 22px;
  }

  .glass-card {
    min-height: 300px;
    padding: 1rem;
  }

  .process-card-title {
    font-size: 18px;
  }

  .footer {
    padding: 16px 12px;
    border-radius: 30px;
    width: calc(100% - 16px);
    margin: 60px auto 5px;
  }
}

/* --- GPU acceleration hints --- */
.glass-card,
.panel,
.scroll-container,
.sticky-heading {
  will-change: transform, opacity;
}

/* Disable will-change when not scrolling to free GPU memory */
@media (prefers-reduced-motion: reduce) {
  .glass-card,
  .panel,
  .scroll-container,
  .sticky-heading {
    will-change: auto;
  }

  .geo-circle,
  .diamond-ornament,
  .dust,
  .ink-drop,
  .fog {
    animation: none !important;
  }
}

/*-------------------------------------------Cloud------------------------------------------*/
