/* Custom CSS for Maharashtra Nav Udyojak Kendra */

/* Import DM Serif Display Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

/* Apply DM Serif Display to all headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'DM Serif Display', serif !important;
}

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c69;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c69 100%);
    --gradient-secondary: linear-gradient(135deg, #ff8c69 0%, #ffa500 100%);
    --gradient-hero: linear-gradient(135deg, #ff6b35 0%, #ff8c69 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(255, 107, 53, 0.15);
    --shadow: 0 0.5rem 1rem rgba(255, 107, 53, 0.2);
    --shadow-lg: 0 1rem 3rem rgba(255, 107, 53, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    font-size: 0.875rem;
    z-index: 1050;
    min-height: 50px;
}

.top-bar .row {
    min-height: 50px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Top Bar Right Side Container */
.top-bar .d-flex.align-items-center.justify-content-end {
    align-items: center;
    height: 100%;
}

/* Top Bar Social Links */
.top-bar .social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.top-bar-item:hover {
    transform: translateY(-1px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white !important;
}

/* Navigation Styles */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 0;
}

/* Mobile Sliding Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-content {
    padding: 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: var(--primary-color);
    color: white;
}

.mobile-menu-link i {
    width: 20px;
    text-align: center;
}

.mobile-menu-dropdown .mobile-menu-link {
    justify-content: space-between;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    max-height: 300px;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mobile-submenu-link:hover {
    background: #e9ecef;
    color: var(--primary-color);
}

.mobile-menu-footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.mobile-contact-info {
    margin-bottom: 15px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9rem;
}

.mobile-contact-item i {
    width: 20px;
    color: var(--primary-color);
}

.mobile-social-links {
    display: flex;
    gap: 10px;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Custom Orange Button Styles */
.btn-orange {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-orange:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-orange:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-orange:disabled {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    opacity: 0.65;
}

/* Orange Modal Header */
.modal-header-orange {
    background-color: var(--primary-color);
    color: white;
    border-bottom: 1px solid var(--primary-dark);
}

.modal-header-orange .btn-close {
    filter: invert(1);
}

.navbar-brand {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Mega Menu Styles */
.mega-menu {
    min-width: 280px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.mega-menu .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mega-menu .dropdown-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.mega-menu .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Nav Actions */
.nav-actions .btn {
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0;
    }
    
    .nav-actions {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .nav-actions .btn {
        margin: 0.25rem;
        flex: 1;
        max-width: 150px;
    }
    
    .mega-menu {
        min-width: 100%;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.95);
    }
}

/* Sticky Navigation */
.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Navbar Link Hover Effects */
.navbar-nav .nav-link {
    position: relative;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Active page styling */
.navbar-nav .nav-link.fw-bold {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

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

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

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Navigation Font Size */
.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Active Navigation Link */
.nav-link-active {
    color: var(--primary-color) !important;
    font-weight: bold !important;
}

/* Hover-only Dropdown */
.dropdown-hover:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-hover .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 250px;
    padding: 1rem;
    margin-top: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

/* Mega Menu Styling */
.mega-menu {
    min-width: 300px;
    padding: 1.5rem;
}

.mega-menu .dropdown-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.mega-menu .dropdown-item:hover {
    background: transparent;
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.mega-menu .dropdown-item:last-child {
    border-bottom: none;
}

/* Dropdown Toggle Arrow Animation */
.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Award Cards */
.award-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.award-icon {
    transition: all 0.3s ease;
}

.award-card:hover .award-icon {
    transform: scale(1.1);
}

.award-year {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Gallery Items */
.gallery-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

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

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hero-section.bg-1::after {
    background-image: url('../images/bg1.webp');
    opacity: 1;
}

.hero-section.bg-2::after {
    background-image: url('../images/bg2.webp');
    opacity: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

/* Animated Background Elements */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    opacity: 0.1;
    animation: floatShape 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, #ff6b35, #ff8c69);
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: -5%;
    animation-delay: -5s;
    background: linear-gradient(45deg, #ff8c69, #ffa500);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: -8%;
    animation-delay: -10s;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 70%;
    right: -10%;
    animation-delay: -15s;
    background: linear-gradient(45deg, #ff6b35, #ff8c69);
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
    animation-delay: -2s;
    background: linear-gradient(45deg, #ff8c69, #ffa500);
}

.shape-6 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 20%;
    animation-delay: -7s;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
}

.shape-7 {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 30%;
    animation-delay: -12s;
    background: linear-gradient(45deg, #ff6b35, #ff8c69);
}

.shape-8 {
    width: 160px;
    height: 160px;
    top: 15%;
    left: 50%;
    animation-delay: -17s;
    background: linear-gradient(45deg, #ff8c69, #ffa500);
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.2;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.1;
    }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: #ff6b35;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 30%;
    left: 80%;
    animation-delay: -2s;
    background: #ff8c69;
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 15%;
    animation-delay: -4s;
    background: #ffa500;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 70%;
    left: 85%;
    animation-delay: -6s;
    background: #ff6b35;
}

.particle-5 {
    width: 4px;
    height: 4px;
    top: 40%;
    left: 25%;
    animation-delay: -8s;
    background: #ff8c69;
}

.particle-6 {
    width: 7px;
    height: 7px;
    top: 50%;
    left: 75%;
    animation-delay: -10s;
    background: #ffa500;
}

.particle-7 {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 40%;
    animation-delay: -12s;
    background: #ff6b35;
}

.particle-8 {
    width: 5px;
    height: 5px;
    top: 25%;
    left: 60%;
    animation-delay: -14s;
    background: #ff8c69;
}

.particle-9 {
    width: 4px;
    height: 4px;
    top: 45%;
    left: 5%;
    animation-delay: -16s;
    background: #ffa500;
}

.particle-10 {
    width: 6px;
    height: 6px;
    top: 65%;
    left: 95%;
    animation-delay: -18s;
    background: #ff6b35;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-60px) translateX(-10px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 107, 53, 0.05) 25%, 
        rgba(255, 140, 105, 0.05) 50%, 
        rgba(255, 165, 0, 0.05) 75%, 
        rgba(255, 255, 255, 0.8) 100%);
    z-index: 4;
}

.hero-content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 20px;
}

.hero-content p {
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #6c757d;
}

.hero-content h1 {
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    min-height: 100px; /* Fixed height to prevent layout shift */
    display: flex;
    align-items: center;
}

/* Responsive font sizing */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 24px;
        line-height: 28px;
        min-height: 56px; /* Adjusted for smaller font */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 20px;
        line-height: 24px;
        min-height: 48px; /* Adjusted for smallest font */
    }
}

.hero-content .text-primary {
    position: relative;
    display: inline-block;
}


/* Light Rays Animation */
.light-rays-container {
    top: 20px;
    left: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
}

.light-rays-text {
    position: relative;
    z-index: 6;
}

.rays-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.ray {
    position: relative;
    width: 60px;
    height: 8px;
    background: linear-gradient(90deg, #ffc107, #ff6b35);
    border-radius: 4px;
    animation: rayPulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.ray-1 {
    animation-delay: 0s;
    transform: rotate(-2deg);
}

.ray-2 {
    animation-delay: 0.3s;
    transform: rotate(0deg);
}

.ray-3 {
    animation-delay: 0.6s;
    transform: rotate(2deg);
}

@keyframes rayPulse {
    0%, 100% { 
        transform: translateX(0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(10px) scale(1.1);
        opacity: 1;
    }
}

/* Additional Animated Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Typing Animation */
.typing-text {
    display: block;
    border-right: 2px solid var(--primary-color);
    white-space: normal;
    overflow: hidden;
    min-height: 1.5em;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.typing-text.typing {
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-buttons .btn-outline-dark:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-buttons {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Trust Signals */
.trust-signals {
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.trust-item {
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

/* Dashboard Styles */
.dashboard-container {
    max-width: 500px;
    margin: 0 auto;
    z-index: 20;
    position: relative;
}

.dashboard-screen {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    min-height: 400px;
}

.dashboard-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.nav-pill {
    padding: 8px 16px;
    background: #e9ecef;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
}

.nav-pill.active {
    background: var(--primary-color);
    color: white;
}

.nav-pill:hover {
    background: var(--primary-light);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.activity-item {
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Phone Styles */
.mobile-phone {
    top: 5%;
    right: -20%;
    z-index: 5;
}

.phone-container {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 35px;
    padding: 6px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}


.iphone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px 4px;
    background: #000;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.status-right i {
    margin-left: 4px;
    font-size: 10px;
}

.whatsapp-header {
    background: #075e54;
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info {
    display: flex;

    flex-direction: row;
    gap: 8px;
}
.contact-info-footer {
    display: flex;

    flex-direction: column;
    gap: 8px;
}
.contact-avatar img {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 2px;
}
.contact-details1 {
    display: flex;
    
    flex-direction: column;
    gap: 7px;
}
.contact-name {
    font-weight: 600;
    font-size: 10px;
    line-height: 1;
}

.contact-status {
    font-size: 9px;
    opacity: 0.8;
    line-height: 1;
}

.header-right {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.chat-container {
    background: #e5ddd5;
    height: 400px;
    padding: 12px;
    overflow-y: auto;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
}

.message {
    margin-bottom: 8px;
    display: flex;
}

.message.received {
    justify-content: flex-start;
}

.message.sent {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 10px;
    position: relative;
    font-size: 13px;
    line-height: 1.4;
}

.message-bubble.received {
    background: white;
    border-radius: 8px 8px 8px 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-bubble.sent {
    background: #dcf8c6;
    border-radius: 8px 8px 2px 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-content {
    margin-bottom: 2px;
}

.message-text {
    margin-bottom: 2px;
    word-wrap: break-word;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    text-align: right;
    margin-top: 3px;
}

.message-bubble.received .message-time {
    text-align: left;
}

.message-input {
    background: #f0f0f0;
    padding: 12px;
    border-top: 1px solid #e0e0e0;
}

.input-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 4px 8px;
    gap: 8px;
}

.message-field {
    flex: 1;
    border: none;
    outline: none;
    font-size: 11px;
    padding: 4px;
    background: transparent;
}

.input-container i {
    font-size: 12px;
    color: #666;
}

/* Floating Elements */
.floating-elements .floating-icon {
    animation: float 3s ease-in-out infinite;
}

.floating-elements .floating-icon:nth-child(2) {
    animation-delay: 1s;
}

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

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

/* About Section */
.about-content h2 {
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.leader-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.leader-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.avatar-circle {
    transition: all 0.3s ease;
}

.leader-card:hover .avatar-circle {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.feature-card .feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-image img {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

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

.product-image img {
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-features .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
}

/* Success Cards */
.success-card {
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
}

.success-icon {
    transition: all 0.3s ease;
}

.success-card:hover .success-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Statistics */
.stat-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.stat-number {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-icon {
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.hero-stats .stat-item {
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: scale(1.05);
}

.hero-stats .stat-number {
    color: var(--primary-color) !important;
    font-weight: 700;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

/* Gallery */
.gallery-item {
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image::before {
    opacity: 1;
}

.gallery-item:hover .gallery-image i {
    transform: scale(1.2) rotate(10deg);
}

.gallery-image i {
    transition: all 0.3s ease;
}

/* Contact Form */
.contact-form {
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    transform: translateY(-2px);
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Back to Top Button */
#backToTop {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content-card {
        padding: 20px;
        margin: 20px 0;
        border-radius: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .floating-icon {
        display: none;
    }
    
    .mobile-phone {
        display: none;
    }
    
    .iphone-frame {
        display: none;
    }
    
    .dashboard-container {
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .light-rays-container {
        top: 10px;
        left: 10px;
        gap: 10px;
    }
    
    .rays-text {
        font-size: 1rem;
    }
    
    .ray {
        width: 40px;
        height: 6px;
    }
    
    .typing-text {
        white-space: normal;
        border-right: none;
        font-size: 1rem;
        min-height: auto;
    }
    
    /* WhatsApp Header Mobile Layout */
    .whatsapp-header {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .contact-info {
        gap: 6px;
    }
    
    .contact-avatar img {
        width: 28px;
        height: 28px;
    }
    
    .contact-name {
        font-size: 9px;
    }
    
    .contact-status {
        font-size: 8px;
    }
    
    .header-right {
        gap: 8px;
        font-size: 12px;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 1rem;
    }
    
.hero-visual {
    margin-top: 2rem;
    position: relative;
    z-index: 20;
    display: block;
}

/* Right column z-index */
.col-lg-6:last-child {
    position: relative;
    z-index: 15;
}
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .feature-card,
    .testimonial-card,
    .gallery-item {
        margin-bottom: 20px;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.5s ease;
}

.loading.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

/* Text Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    #backToTop,
    .floating-elements {
        display: none !important;
    }
    
    .hero-section {
        background: none !important;
        color: black !important;
    }
    
}

/* New About Us Section Styles */
.about-sec1-box {
    position: relative;
    padding: 20px;
}

/* New About Us Section Container */
section:has(.about-sec1-box) {
    padding: 50px 0;
}

/* Mobile padding for new About Us section */
@media (max-width: 768px) {
    section:has(.about-sec1-box) {
        padding: 20px 0;
    }
}

.about-sec1-box::after {
    content: "";
    display: table;
    clear: both;
}

.about-sec1 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-sec1.img1 {
    z-index: 2;
    margin-bottom: -50px;
    margin-right: 50px;
    width: 70%;
    float: left;
}

.about-sec1.img2 {
    z-index: 1;
    position: relative;
    width: 50%;
    float: right;
}

.about-sec1-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-sec1 img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.about-sec1:hover img {
    transform: scale(1.05);
}

.shape2 {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    /* Removed float animation - now static */
}

.round-text {
    position: absolute;
    top: 60%;
    left: 42%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: rotateText 20s linear infinite;
}

.round-text svg {
    width: 100%;
    height: 100%;
}

.round-text text {
    font-size: 12px;
    font-weight: 600;
    fill: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes rotateText {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobile responsive round-text */
@media (max-width: 768px) {
    .round-text {
        width: 100px;
        height: 100px;
    }
    
    .round-text text {
        font-size: 8px; /* Reduced from 12px to 8px for mobile */
        letter-spacing: 0.5px; /* Reduced from 1px to 0.5px for mobile */
    }
}

.overlay-icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    animation: none; /* Keep center icon stationary */
}

.overlay-icon-box i {
    color: white;
    font-size: 24px;
}

.gear-anim {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 6;
}

.gear-anim i {
    font-size: 30px;
    color: var(--primary-color);
    animation: rotate 10s linear infinite;
}

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

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

.theme-title h6 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.theme-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-divider {
    margin-bottom: 25px;
}

.title-divider-separator {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.featured-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.featured-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.featured-icon i {
    color: white;
    font-size: 24px;
}

.featured-title h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.featured-desc p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.list-icon {
    list-style: none;
    padding: 0;
}

.list-icon li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
}

.list-icon li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
}

.themeht-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.themeht-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.themeht-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.themeht-btn:hover i {
    transform: translateX(5px);
}

.bg-img-sec2 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    min-height: 200px;
}

/* Animation classes */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why Choose Us Section Styles */
.why-choose-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

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

.why-choose-icon {
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.05);
}

.icon-circle {
    transition: all 0.3s ease;
}

.why-choose-card:hover .icon-circle {
    background: var(--primary-color) !important;
    transform: scale(1.05);
}

.why-choose-card:hover .icon-circle i {
    color: white !important;
}

/* Special styling for the highlighted card */
.why-choose-card[style*="background: #1e3a8a"] {
    border: none;
    min-height: 240px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.why-choose-card[style*="background: #1e3a8a"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.3);
}

.why-choose-card[style*="background: #1e3a8a"]:hover .icon-circle {
    background: var(--primary-color) !important;
}

.why-choose-card[style*="background: #1e3a8a"]:hover .icon-circle i {
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-card {
        min-height: 180px;
    }
    
    .why-choose-card[style*="background: #1e3a8a"] {
        min-height: 200px;
    }
}

/* Product Carousel Styles */
.product-carousel-container {
    overflow: hidden;
    position: relative;
}

.product-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.product-card-item {
    flex: 0 0 300px;
    max-width: 300px;
}

.product-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Product card link styling */
.product-card-item a {
    color: inherit;
    text-decoration: none;
}

.product-card-item a:hover {
    color: inherit;
    text-decoration: none;
}

.product-card-item a:hover .product-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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


.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.product-rating i {
    font-size: 12px;
}

.product-price {
    font-weight: 600;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .product-card-item {
        flex: 0 0 250px;
        max-width: 250px;
    }
    
    .carousel-prev {
        left: -15px;
    }
    
    .carousel-next {
        right: -15px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
}

/* Success Stories Section with Gradient Background */
.success-stories-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #ff6b35 50%, #e74c3c 75%, #c0392b 100%);
    position: relative;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(231, 76, 60, 0.1) 100%);
    z-index: 1;
}

.success-stories-section .container {
    position: relative;
    z-index: 2;
}

/* Static Icons */
.static-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.static-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

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

.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    top: 40%;
    left: 5%;
    animation-delay: 2s;
}

.icon-4 {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.icon-5 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.icon-6 {
    top: 15%;
    left: 50%;
    animation-delay: 5s;
}

.icon-7 {
    top: 70%;
    right: 25%;
    animation-delay: 6s;
}

.icon-8 {
    top: 30%;
    left: 80%;
    animation-delay: 7s;
}

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

/* Video Gallery Styles */
.video-gallery-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.video-gallery-card .video-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-gallery-card .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-gallery-card .video-container:hover .video-overlay {
    opacity: 1;
}

.video-gallery-card .play-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.video-gallery-card .play-button:hover {
    transform: scale(1.1);
    background: white;
}

.video-gallery-card .video-stats {
    font-size: 0.85rem;
}

.video-gallery-card .video-content h5 {
    font-size: 1.1rem;
    line-height: 1.3;
}

.video-gallery-card .video-content p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Modern Impact Section */
.impact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.impact-section .stat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.impact-section .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.impact-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 4px 4px 0 0;
}

/* Gradient Backgrounds for Icons */
.bg-gradient-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
}

/* Progress Bar Gradients */
.progress-bar.bg-gradient-primary {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.progress-bar.bg-gradient-success {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.progress-bar.bg-gradient-warning {
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.progress-bar.bg-gradient-info {
    background: linear-gradient(90deg, #17a2b8, #6f42c1);
}

/* YouTube Shorts Cards */
.youtube-short-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.youtube-short-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.youtube-embed iframe {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Awards Section Styling */
.awards-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.awards-left h2 {
    line-height: 1.2;
}

.award-statuettes .statuette {
    animation: float 3s ease-in-out infinite;
}

.award-statuettes .statuette.silver {
    animation-delay: 1.5s;
}

.circular-graphic {
    position: relative;
    overflow: hidden;
}

.circular-graphic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #ff6b35, #f7931e, #28a745, #17a2b8, #6f42c1, #ff6b35);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.award-categories ul li {
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.award-categories ul li:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.winner-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.winner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.winner-card .winner-image {
    transition: all 0.3s ease;
}

.winner-card:hover .winner-image {
    transform: scale(1.1);
}

/* Footer Styles */
footer {
    background-color: #f8f9fa !important;
    border-top: 1px solid #e9ecef;
}

.footer-logo .logo-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: 3px solid #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo .logo-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-logo .logo-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'DM Serif Display', serif;
}

.footer-logo h5 {
    color: #212529;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
}

.footer-logo small {
    color: #6c757d;
    font-size: 0.75rem;
}

footer h6 {
    color: #212529;
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    margin-bottom: 1rem;
}

footer ul li a {
    color: #6c757d !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

footer ul li a:hover {
    color: var(--primary-color) !important;
}

.contact-info p {
    line-height: 1.5;
}

.contact-info i {
    width: 16px;
    text-align: center;
}

.address-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 0 8px 8px 0;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.address-item h6 {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-bottom: 8px;
}

.address-item p {
    margin-bottom: 0;
    line-height: 1.4;
}

.social-links {

    display: flex !important;
    flex-wrap: wrap;
    gap: 4px;
    visibility: visible !important;
    opacity: 1 !important;
}

.social-links a {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none !important;
}

.social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #6c757d !important;
    color: white !important;
    border-radius: 4px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    opacity: 1 !important;
    visibility: visible !important;
    border: none !important;
    outline: none !important;
}

.social-icon i {
    color: white !important;
    font-size: 0.875rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon.youtube:hover {
    background: #ff0000;
}

footer hr {
    border-color: #dee2e6;
    margin: 2rem 0 1rem 0;
}

footer .text-muted {
    color: #6c757d !important;
}

footer .text-primary {
    color: var(--primary-color) !important;
}

/* Force Social Links Visibility */
footer .social-links {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

footer .social-icon {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #6c757d !important;
    color: white !important;
}

footer .social-icon i {
    color: white !important;
    display: block !important;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-logo .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo .logo-text {
        font-size: 1rem;
    }
    
    .footer-logo h5 {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    footer .text-md-end {
        text-align: left !important;
        margin-top: 1rem;
    }
}

/* CTA Section Styles */
.cta-gradient {
    background: linear-gradient(135deg, #0077b5 0%, #17a2b8 25%, #0056b3 50%, #0077b5 100%);
    position: relative;
    min-height: 400px;
}

.cta-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 119, 181, 0.9) 0%, rgba(23, 162, 184, 0.8) 25%, rgba(0, 86, 179, 0.8) 50%, rgba(0, 119, 181, 0.9) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-visual {
    position: relative;
    z-index: 2;
}

.cta-gradient .container {
    position: relative;
    z-index: 2;
}

.cta-gradient .row {
    position: relative;
    z-index: 2;
}

.cta-features .feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffd700;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.cta-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.cta-icon-item {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffd700;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.cta-icon-item:nth-child(2) {
    animation-delay: 0.5s;
}

.cta-icon-item:nth-child(3) {
    animation-delay: 1s;
}

.cta-icon-item:nth-child(4) {
    animation-delay: 1.5s;
}

.cta-icon-item:nth-child(5) {
    animation-delay: 2s;
}

.cta-icon-item:nth-child(6) {
    animation-delay: 2.5s;
}

.cta-icon-item:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.cta-circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
    animation-delay: 2s;
}

.cta-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

/* Mobile responsive circles - 30% smaller */
@media (max-width: 768px) {
    .cta-circle-1 {
        width: 140px; /* 200px - 30% = 140px */
        height: 140px;
        top: -70px; /* -100px - 30% = -70px */
        right: -70px; /* -100px - 30% = -70px */
    }
    
    .cta-circle-2 {
        width: 105px; /* 150px - 30% = 105px */
        height: 105px;
        bottom: -52.5px; /* -75px - 30% = -52.5px */
        left: -52.5px; /* -75px - 30% = -52.5px */
    }
    
    .cta-circle-3 {
        width: 70px; /* 100px - 30% = 70px */
        height: 70px;
    }
}

.cta-buttons .btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-warning:hover {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

/* CTA Responsive Design */
@media (max-width: 768px) {
    .cta-gradient {
        min-height: 350px;
    }
    
    .cta-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 200px;
    }
    
    .cta-icon-item {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-features .feature-item {
        padding: 10px 12px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .cta-gradient h2 {
        font-size: 2rem;
    }
    
    .cta-gradient .lead {
        font-size: 1rem;
    }
}

/* Additional CTA Styles for Index Page */
.cta-gradient .display-4 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.cta-gradient .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-gradient .btn {
    font-size: 1rem;
    padding: 12px 24px;
}

.cta-gradient .btn-lg {
    font-size: 1.1rem;
    padding: 14px 28px;
}

/* CTA Image Styles */
.cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 300px;
}

/* Responsive CTA Image */
@media (max-width: 768px) {
    .cta-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .cta-visual {
        min-height: 200px;
        margin-top: 2rem;
    }
}

/* Pricing Section Font Family */
.pricing-section {
    font-family: 'Roboto', sans-serif !important;
    font-weight: normal !important;
}

.pricing-section * {
    font-family: 'Roboto', sans-serif !important;
    font-weight: normal !important;
}

.pricing-section span {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: bold !important;
}

