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

html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box;
}

.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
}

.hero-row {
    min-height: 100vh;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00d4aa, #39ff14);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #39ff14, #ffff00);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(45deg, #00d4aa, #39ff14, #ffff00, #ff1493);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 1050;
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
}

.brand-text {
    color: #ffffff;
}

.brand-accent {
    color: #00d4aa;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    z-index: 1051;
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2800, 212, 170, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.navbar-toggler:hover {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid #00d4aa;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 170, 0.25);
    outline: none;
}

.navbar-toggler:active {
    background: rgba(0, 212, 170, 0.2);
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00d4aa !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00d4aa, #39ff14);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.cta-nav {
    background: linear-gradient(45deg, #00d4aa, #39ff14);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem !important;
    color: #000000 !important;
    font-weight: 600;
}

.cta-nav:hover {
    background: linear-gradient(45deg, #39ff14, #ffff00);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 170, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
    z-index: 2;
    position: relative;
    padding: 60px 0 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary {
    background: linear-gradient(45deg, #00d4aa, #39ff14);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    color: #000000;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #39ff14, #ffff00);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 212, 170, 0.4);
    color: #000000;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    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.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4aa, #39ff14);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #39ff14, #ffff00);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ffff00, #ff1493);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.hero-svg {
    width: 100%;
    height: 300px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.3));
}

.poly-shape {
    animation: polyPulse 4s ease-in-out infinite;
}

.poly-outline {
    animation: polyRotate 8s linear infinite;
}

.floating-dot {
    animation: dotFloat 3s ease-in-out infinite;
}

@keyframes polyPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes polyRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes dotFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Carousel Section */
.carousel-section {
    background: #ffffff;
    color: #000000;
    margin: 2rem 0;
}

.carousel-content {
    padding: 3rem 0;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.carousel-text {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff1493, #ffff00);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.carousel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-icon {
    font-size: 8rem;
    color: #00d4aa;
    animation: iconSpin 10s linear infinite;
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    color: #00d4aa;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #00d4aa;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
}

.about-text {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateX(10px);
    border-color: rgba(0, 212, 170, 0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4aa, #39ff14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-content p {
    color: #cccccc;
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.cert-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #00d4aa, #39ff14, #ffff00, #ff1493);
    background-size: 400% 400%;
    animation: gradientShift 3s ease-in-out infinite;
}

.cert-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 25px 50px rgba(0, 212, 170, 0.3);
}

.cert-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4aa, #39ff14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cert-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.cert-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hot-deal {
    background: linear-gradient(45deg, #ff1493, #ffff00);
    color: #000000;
    animation: badgePulse 2s ease-in-out infinite;
}

.limited-time {
    background: linear-gradient(45deg, #39ff14, #00d4aa);
    color: #000000;
}

.early-bird {
    background: linear-gradient(45deg, #ffff00, #ff1493);
    color: #000000;
}

.cert-content {
    padding: 0 1.5rem 1.5rem;
}

.cert-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cert-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cert-price {
    margin-bottom: 1.5rem;
}

.original-price {
    color: #999999;
    text-decoration: line-through;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.current-price {
    color: #00d4aa;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.cert-features {
    list-style: none;
    margin-bottom: 2rem;
}

.cert-features li {
    padding: 0.3rem 0;
    color: #cccccc;
}

.cert-features i {
    color: #00d4aa;
    margin-right: 0.5rem;
}

.btn-cert-primary {
    width: 100%;
    background: linear-gradient(45deg, #00d4aa, #39ff14);
    border: none;
    padding: 0.8rem;
    font-weight: 600;
    border-radius: 10px;
    color: #000000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cert-primary::before {
    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.5s;
}

.btn-cert-primary:hover::before {
    left: 100%;
}

.btn-cert-primary:hover {
    background: linear-gradient(45deg, #39ff14, #ffff00);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 170, 0.4);
}

/* Deals Section */
.deals-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.deal-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff1493, #ffff00, #39ff14, #00d4aa);
    background-size: 400% 400%;
    animation: gradientShift 2s ease-in-out infinite;
}

.mega-deal::before {
    height: 6px;
    background: linear-gradient(45deg, #ff1493, #ffff00, #39ff14, #00d4aa, #ff1493);
    animation: gradientShift 1.5s ease-in-out infinite;
}

.deal-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 30px 60px rgba(0, 212, 170, 0.3);
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.deal-badge {
    background: linear-gradient(45deg, #ff1493, #ffff00);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: badgePulse 2s ease-in-out infinite;
}

.deal-discount {
    font-size: 2rem;
    font-weight: 900;
    color: #00d4aa;
    font-family: 'Orbitron', monospace;
}

.deal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.deal-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.deal-price {
    margin-bottom: 1.5rem;
}

.deal-current-price {
    color: #00d4aa;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
}

.deal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.deal-timer {
    margin-bottom: 2rem;
    text-align: center;
}

.timer-label {
    color: #cccccc;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.timer-display {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff1493;
}

.timer-unit {
    background: rgba(255, 20, 147, 0.2);
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    margin: 0 0.1rem;
}

.spots-remaining {
    text-align: center;
}

.spots-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ff1493;
    font-family: 'Orbitron', monospace;
}

.btn-deal-primary {
    width: 100%;
    background: linear-gradient(45deg, #ff1493, #ffff00);
    border: none;
    padding: 1rem;
    font-weight: 700;
    border-radius: 15px;
    color: #000000;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-deal-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-deal-primary:hover::before {
    left: 100%;
}

.btn-deal-primary:hover {
    background: linear-gradient(45deg, #ffff00, #39ff14);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.4);
}

/* Mini Deal Cards */
.mini-deal-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.mini-deal-card:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.mini-deal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4aa, #39ff14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: iconPulse 3s ease-in-out infinite;
}

.mini-deal-icon i {
    font-size: 2rem;
    color: #000000;
}

.mini-deal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.mini-deal-text {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 170, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4aa;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #00d4aa;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 170, 0.3);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #00d4aa;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #cccccc;
}

.contact-item i {
    color: #00d4aa;
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00d4aa;
}

/* Responsive Design */

/* Desktop and Large Screen Optimizations */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    /* Hero Section Mobile Optimizations */
    .hero-section {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-row {
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 20px;
        line-height: 1.6;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        flex: 1;
        max-width: 120px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Hero Visual Mobile */
    .hero-visual {
        height: 250px;
        margin-top: 2rem;
    }
    
    .hero-svg {
        max-width: 280px;
        height: auto;
    }
    
    .floating-shape {
        display: none;
    }
    
    /* Navigation Mobile */
    .navbar-toggler {
        border: 2px solid #00d4aa !important;
        padding: 0.4rem 0.6rem;
        z-index: 1051;
        position: relative;
        background: rgba(0, 0, 0, 0.9) !important;
        border-radius: 6px;
        width: auto;
        height: auto;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-toggler-icon {
        width: 20px !important;
        height: 20px !important;
        background-size: 100% 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 170, 0.25);
    outline: none;
}

.navbar-toggler:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: #39ff14;
}

.navbar-toggler:active {
    background: rgba(0, 212, 170, 0.2);
}
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .cta-nav {
        margin: 1rem 0 0 0 !important;
        display: inline-block;
        width: auto;
    }
    
    /* General Mobile Styles */
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col-lg-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-content {
        padding: 50px 10px 20px 10px;
        text-align: center;
    }
    
    .text-gradient {
        display: block;
        margin-top: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .carousel-title {
        font-size: 1.8rem;
    }
    
    .deal-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile Optimizations */
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-row {
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        max-width: none;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-buttons .btn {
        max-width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .hero-visual {
        height: 200px;
        margin-top: 1.5rem;
    }
    
    .hero-svg {
        max-width: 240px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 5px;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-content {
        padding: 40px 5px 15px 5px;
        text-align: center;
    }
    
    .text-gradient {
        display: block;
        margin-top: 0.5rem;
    }
    
    .cert-card,
    .deal-card {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Improved touch targets */
    .btn {
        min-height: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Ultra Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px;
        min-height: auto;
        overflow-x: hidden;
    }
    
    .hero-section .row {
        min-height: auto !important;
    }
    

    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
        padding: 0 10px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        padding: 0 10px;
        gap: 0.6rem;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .hero-visual {
        height: 150px;
        margin-top: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-svg {
        max-width: 180px;
        width: 100%;
        height: auto;
    }
    
    .floating-elements {
        display: none;
    }
    
    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .hero-content {
        padding: 30px 0 10px 0;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        margin: 0.3rem;
        white-space: nowrap;
        min-width: 140px;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0.3rem !important;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-toggler {
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
        border: 2px solid #00d4aa !important;
        background: rgba(0, 0, 0, 0.9) !important;
        min-width: 40px;
        min-height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-toggler-icon {
        width: 18px !important;
        height: 18px !important;
        background-size: 100% 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: inline-block !important;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 0 8px;
    }
    
    /* Ensure no horizontal overflow */
    body {
        overflow-x: hidden;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col-lg-6 {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    /* Certifications page specific */
    .cert-card {
        margin-bottom: 1.5rem;
        padding: 15px;
    }
    
    .cert-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .cert-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .cert-price {
        font-size: 1.1rem;
    }
    
    .pagination-container {
        padding: 0 10px;
    }
    
    .load-more-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Contact page specific */
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .contact-item {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .form-control {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    /* Footer adjustments */
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-menu a,
    .contact-item {
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Critical Layout Overflow Fixes */
[class*="col-"] {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* Bootstrap Column Responsive Fixes */
@media (max-width: 575.98px) {
    [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    .col-md-6, .col-lg-6, .col-xl-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .col-md-4, .col-lg-4, .col-xl-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .col-md-3, .col-lg-3, .col-xl-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Carousel Overflow Fixes */
.carousel-item {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

.carousel-content {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

.carousel-item .container {
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.carousel-item .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.carousel-title, .carousel-text {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Offer Badge Responsive Fix */
.offer-badge {
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
}

/* About Section Visual Fixes */
.about-visual {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.carousel-visual {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.carousel-icon {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* General Element Overflow Prevention */
* {
    max-width: 100%;
    box-sizing: border-box;
}

img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
}

/* Prevent Horizontal Scroll on All Elements */
body * {
    overflow-x: visible;
}

body *:not(.allow-horizontal-scroll) {
    max-width: 100%;
}

/* Mobile Specific Fixes */
@media (max-width: 767.98px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        max-width: 100% !important;
    }
    
    .row {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }
    
    [class*="col-"] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Fix specific problematic elements */
    .hero-row {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    .align-items-center {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
}

/* Specific Row Element Fixes for Unwanted Scrolling */
.row.align-items-center.hero-row {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.row.align-items-center {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Fix for specific row elements that were causing horizontal scroll */
.row:nth-child(170),
.row:nth-child(216),
.row:nth-child(337) {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Additional Scroll Prevention */
body, html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative !important;
}

/* Prevent any element from causing horizontal scroll */
* {
    max-width: 100% !important;
}

*:not(html):not(body) {
    max-width: calc(100vw - 20px) !important;
}

/* Force all containers to respect viewport width */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Additional mobile viewport fixes */
@media (max-width: 575.98px) {
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    .container {
        max-width: 100vw !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    .row {
        margin-left: -4px !important;
        margin-right: -4px !important;
        max-width: 100vw !important;
    }
    
    [class*="col-"] {
        padding-left: 4px !important;
        padding-right: 4px !important;
        max-width: 100% !important;
    }
}

/* Custom AOS Animations */
[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
    opacity: 0;
}

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

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(-100deg);
    opacity: 0;
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0deg);
    opacity: 1;
}

[data-aos="flip-right"] {
    transform: perspective(2500px) rotateY(100deg);
    opacity: 0;
}

[data-aos="flip-right"].aos-animate {
    transform: perspective(2500px) rotateY(0deg);
    opacity: 1;
}