/* Global Styles */

:root {
    --primary-color: #28a745;
    --primary-dark: #1e7e34;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --success-light: #d4edda;
    --warning-light: #fff3cd;
    --info-light: #d1ecf1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 60px;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

.display-3 {
    font-size: 3.5rem;
    font-weight: 700;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 600;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Navigation */

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: rgba(52, 58, 64, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    max-height: 60px;
}

.logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;

}

.nav-link {
    color:#ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color:#09D0EF !important;
}

    .nav-link.active {
        color: #09D0EF !important;
    }

.navbar-nav .btn {
    margin-left: 0.5rem;
}

/* Buttons */

.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    padding: 0.75rem 1.5rem;
}

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    /* remove all margins and paddings */
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
   padding:60px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    /* optional: also remove padding if needed */
    padding: 0;
    margin: 0;
}



.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.floating-card {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    animation: float 3s ease-in-out infinite;
}

.floating-card .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hero-features .feature-item {
    margin-bottom: 0.5rem;
}

.hero-features .feature-item i {
    color: var(--primary-color);
}

/* Page Banner */

.page-banner {
    background: linear-gradient(135deg, #002a43 0%, #001a2e 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

/* Banner Background Image */

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    filter: brightness(0.8) contrast(1.1);
    display: block;
    min-height: 100%;
}

/* Banner Features */

.banner-features {
    margin-top: 2rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Platform Capabilities */

.platform-capabilities {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.capability-card {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.capability-card:hover {
    transform: translateY(-5px);
}

.capability-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.capability-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.capability-card p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Announcements Section */

.announcements-section {
    background: linear-gradient(90deg, var(--success-light) 0%, var(--light-color) 100%);
    border-bottom: 1px solid rgba(40, 167, 69, 0.2);
}

.announcement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.announcement-text {
    font-weight: 500;
    color: var(--dark-color);
}

.badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

/* USP Section */

.usp-section {
    background-color: var(--light-color);
}

.usp-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.usp-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.usp-icon-wrapper {
    margin-bottom: 1rem;
}

.usp-item h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.usp-item p {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Featured Apps Section */

.featured-apps-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-card {
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
}

.app-card .card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.app-card:hover .card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.app-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.app-features .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

/* Video Section */

.video-placeholder {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(40, 167, 69, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    background: rgba(40, 167, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    color: white;
}

.overlay-content h5 {
    margin-bottom: 0.5rem;
}

.feature-list .feature-item {
    margin-bottom: 1rem;
}

.feature-list .feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Solutions Section */

.solutions-section {
    background: white;
}

.solution-card {
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-card .card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.solution-card:hover .card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.solution-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.solution-features .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

/* Testimonials */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-item {
    padding: 2rem;
}

.testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    color: var(--primary-color);
    opacity: 0.7;
}

.testimonial-author img {
    border: 3px solid var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-dark);
}

/* Company Info */

.company-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.highlight-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.mission-vision .card {
    transition: transform 0.3s ease;
}

.mission-vision .card:hover {
    transform: translateY(-5px);
}

/* Company Values */

.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.value-card {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.value-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    color: var(--primary-color);
}

.value-features .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

/* Milestones */

.milestones-section {
    background: white;
}

.milestone-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.milestone-item:hover {
    transform: translateY(-5px);
    background: var(--light-color);
}

.milestone-number {
    color: var(--primary-color);
}

.milestone-icon {
    margin-top: 1rem;
    opacity: 0.7;
}

/* Partnerships Section */

.partnerships-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partnership-card {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.partnership-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partnership-logo {
    color: var(--primary-color);
}

.partnership-features .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

/* Team Section */

.team-section {
    background: white;
}

.team-card {
    transition: transform 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
}

.team-card:hover {
    transform: translateY(-5px);
    background: var(--light-color);
}

.team-photo img {
    border: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-expertise .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

/* Cards */

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Icons */

.fas {
    color: var(--primary-color);
}

/* CTA Section */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Footer */

.footer {
    background: var(--dark-color);
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Animations */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
        text-align: center;
    }
    .page-banner {
        min-height: 90vh;
    }
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .display-5 {
        font-size: 2rem;
    }
    .usp-item {
        margin-bottom: 2rem;
    }
    .floating-card {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 1rem;
    }
    .announcement-item {
        flex-direction: column;
        text-align: center;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .banner-features .col-md-3 {
        margin-bottom: 1rem;
    }
    .banner-bg-image {
        object-position: center center;
    }
}

@media (max-width: 576px) {
    .hero-banner h1 {
        font-size: 2rem;
    }
    .display-3 {
        font-size: 2rem;
    }
    .display-5 {
        font-size: 1.75rem;
    }
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    .hero-features .col-6 {
        margin-bottom: 1rem;
    }
    .banner-features .col-md-3 {
        width: 50%;
    }
}

/* Utility Classes */

.text-success {
    color: var(--primary-color) !important;
}

.bg-success {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

/* Enhanced hover effects */

.usp-item:hover .usp-icon-wrapper i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.app-card:hover .app-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.capability-card:hover .capability-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.partnership-card:hover .partnership-logo i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Smooth scrolling */

html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */

.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Loading states */

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Print styles */

@media print {
    .navbar,
    .footer,
    .btn,
    .floating-card {
        display: none !important;
    }
    body {
        padding-top: 0;
    }
    .hero-banner,
    .page-banner {
        background: white !important;
        color: black !important;
    }
}

.hero-image-only {
    position: relative;
    min-height: 90vh;
    display: block;
}

.hero-image-only .hero-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-image-only.hero-banner::before {
    display: none;
}