/* Global Styles */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --dark-color: #1a1b1e;
    --light-color: #f8f9fa;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --text-primary: #2b2d42;
    --text-secondary: #8d99ae;
    --navbar-height: 80px;
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
    }
}

@media (max-width: 576px) {
    :root {
        --navbar-height: 50px;
    }
}

/* Container adjustments */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    padding-top: var(--navbar-height);
}

/* Section Spacing */
section[id] {
    scroll-margin-top: var(--navbar-height);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.9), rgba(76, 201, 240, 0.9)), url('../images/banner/banner.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding-top: 0;
    margin-top: calc(-1 * var(--navbar-height));
    display: flex;
    align-items: center;
}

/* Navigation */
.navbar {
    background-color: #0F1C2A !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    width: 100%;
    height: var(--navbar-height);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    height: 100%;
}

.navbar-scrolled {
    background-color: #0F1C2A !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-right: 0;
    white-space: nowrap;
    height: 100%;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.navbar-collapse {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 0.5rem;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1rem;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem !important;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Login Button */
.login-btn {
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    background: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
    margin-left: 0.75rem;
    height: 35px;
    display: flex;
    align-items: center;
}

.login-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0;
    width: min(90%, 1200px);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.mega-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-item.dropdown {
    position: static;
}

.nav-item.dropdown:hover .mega-menu::before {
    opacity: 1;
    visibility: visible;
}

.nav-item.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.mega-menu-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--light-color);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 0;
}

.mega-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.mega-menu-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mega-menu-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    white-space: normal;
    word-wrap: break-word;
}

.mega-menu-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    white-space: normal;
    word-wrap: break-word;
}

/* Responsive Mega Menu */
@media (max-width: 1200px) {
    .mega-menu {
        width: 95%;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 1rem 0;
        transform: none;
        border-radius: 0;
        background: transparent;
    }

    .mega-menu::before {
        display: none;
    }

    .nav-item.dropdown:hover .mega-menu {
        transform: none;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .mega-menu-item {
        padding: 1rem;
        background: var(--light-color);
    }
}

/* Services Section */
.services-preview .card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.services-preview .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-preview .card-body {
    padding: 2.5rem;
}

.services-preview .card i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.services-preview .card:hover i {
    transform: scale(1.1);
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0F1C2A 0%, #1a1b1e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-top {
    padding: 5rem 0 3rem;
    position: relative;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-newsletter h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        padding: 4rem 0 2rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Team Cards */
.team-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-card img {
    transition: transform 0.3s ease;
}

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

/* Process Section */
.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.process-icon:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.process-icon:hover i {
    color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .services-preview .card {
        margin-bottom: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Custom Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.bg-accent {
    background-color: var(--accent-color) !important;
}

/* Technologies Section */
.technologies {
    background: var(--light-color);
    padding: 5rem 0;
}

.technologies .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    min-height: 400px;
}

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

.technologies .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.technologies .card-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 1.25rem;
}

.technologies .card-title i {
    color: var(--primary-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.tech-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tech-item span {
    font-size: 0.9rem;
    color: #333;
}

/* Responsive Styles for Technologies */
@media (max-width: 1200px) {
    .technologies .card {
        min-height: 380px;
    }
    
    .tech-grid {
        gap: 0.75rem;
    }
}

@media (max-width: 992px) {
    .technologies .card {
        min-height: 360px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .technologies .card {
        min-height: 340px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .technologies .card {
        min-height: 320px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-item {
        padding: 0.6rem;
    }
    
    .tech-icon {
        width: 20px;
        height: 20px;
    }
    
    .tech-item span {
        font-size: 0.85rem;
    }
}

/* Partners Section */
.partners {
    background: white;
}

.partners-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
}

.partner-item {
    flex: 0 0 calc(16.666% - 2rem);
    text-align: center;
    transition: all 0.3s ease;
}

.partner-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-item {
        flex: 0 0 calc(33.333% - 2rem);
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .partner-item {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 576px) {
    .partner-item {
        flex: 0 0 100%;
    }
}

/* About Section */
.about {
    background: white;
    padding: 5rem 0;
}

.about .container {
    max-width: 1200px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-right: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.about-content {
    padding-left: 1rem;
}

.about-content h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-content .lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content .d-flex {
    margin-bottom: 1rem;
}

.about-content i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Responsive styles for About section */
@media (max-width: 992px) {
    .about {
        padding: 4rem 0;
    }

    .about-image {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .about-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }

    .about-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 2rem 0;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }
}

/* Services Section */
.services {
    background: var(--light-color);
}

.services .card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services .card-body {
    padding: 2rem;
}

.services .card-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.services .card-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.services ul li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.services ul li i {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-card, .form-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

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

.contact-card-header, .form-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-card-header i, .form-card-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: rgba(67, 97, 238, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.contact-card-header h3, .form-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(67, 97, 238, 0.03);
}

.contact-item:hover {
    background: rgba(67, 97, 238, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.contact .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contact .social-link {
    width: 40px;
    height: 40px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact .form-group {
    margin-bottom: 1.5rem;
}

.contact .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact .form-label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.contact .form-control {
    border: 2px solid #e9ecef;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.15);
}

.contact .form-control::placeholder {
    color: #adb5bd;
}

.contact textarea.form-control {
    resize: none;
    min-height: 120px;
}

.contact .btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-card, .form-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-card-header i, .form-card-header i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .contact-card, .form-card {
        padding: 1.5rem;
    }
    
    .contact-card-header h3, .form-card-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-text h5 {
        font-size: 1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.products-slider {
    position: relative;
    padding: 0 60px;
    margin: 0 auto;
    overflow: hidden;
}

.products-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    width: 100%;
    position: relative;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    transition: transform 0.3s ease;
}

.product-card .card {
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
}

.product-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card .card:hover .card-img-top {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.product-card .card-text {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-card .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-card .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.product-card .btn-light:hover {
    background: var(--primary-color);
    color: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Responsive styles for products section */
@media (max-width: 992px) {
    .product-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 4rem 0;
    }
    
    .product-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .products-slider {
        padding: 0 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Login Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0;
}

.btn-close {
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.login-container {
    padding: 0 1.5rem 1.5rem;
}

.login-logo {
    height: 100px;
    width: auto;
    border-radius: 5%;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.input-group {
    border-radius: 10px;
    overflow: hidden;
}

.input-group-text {
    background-color: rgba(67, 97, 238, 0.1);
    border: none;
    color: var(--primary-color);
    padding: 0.75rem 1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

#togglePassword {
    border: 2px solid #e9ecef;
    border-left: none;
    background-color: white;
    color: var(--text-secondary);
}

#togglePassword:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 576px) {
    .login-container {
        padding: 0 1rem 1rem;
    }
    
    .modal-header {
        padding: 1rem 1rem 0;
    }
    
    .login-title {
        font-size: 1.3rem;
    }
    
    .login-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Login Methods */
.login-methods {
    margin-bottom: 1.5rem;
}

.login-methods .btn-group {
    border-radius: 10px;
    overflow: hidden;
}

.login-methods .btn-check {
    display: none;
}

.login-methods .btn-outline-primary {
    border: 2px solid #e9ecef;
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-methods .btn-outline-primary i {
    font-size: 1rem;
}

.login-methods .btn-check:checked + .btn-outline-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.login-methods .btn-outline-primary:hover {
    background-color: rgba(67, 97, 238, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.login-methods .btn-check:checked + .btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Login Field Transitions */
.login-field {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.login-field.hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* Login Form Container */
.login-container {
    position: relative;
    min-height: 200px;
}

/* Specific adjustments for iPhone 12 Pro Max and similar devices */
@media (max-width: 430px) {
    .navbar .container {
        padding-right: 10px;
        padding-left: 10px;
    }

    .navbar-brand {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .navbar-brand img {
        height: 28px;
    }

    .navbar-toggler {
        padding: 0.1rem 0.2rem;
        font-size: 0.75rem;
    }

    .navbar-collapse {
        padding: 0.3rem;
    }

    .nav-link {
        padding: 0.25rem !important;
        font-size: 0.7rem;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        background: #0F1C2A;
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: auto;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        height: auto;
        padding: 0.5rem 0;
    }

    .nav-item::after {
        display: none;
    }

    .nav-link {
        padding: 0.75rem 0 !important;
        height: auto;
        width: 100%;
    }

    .login-btn {
        margin: 1rem 0 0 0;
        width: 100%;
        justify-content: center;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 0.9rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .login-btn {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
    }
}

/* Forgot Password Modal Styles */
.forgot-password-container {
    padding: 0 1.5rem 1.5rem;
}

.forgot-password-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.forgot-password-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.back-to-login {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.back-to-login:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.back-to-login i {
    font-size: 0.8rem;
}

/* Responsive Styles for Forgot Password Modal */
@media (max-width: 576px) {
    .forgot-password-container {
        padding: 0 1rem 1rem;
    }
    
    .forgot-password-title {
        font-size: 1.3rem;
    }
    
    .forgot-password-subtitle {
        font-size: 0.9rem;
    }
}

/* Map Card Styles - Removed */

/* Footer Contact Info */
.footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.contact-info-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .map-card {
        margin-top: 2rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .map-card {
        padding: 1.5rem;
    }
    
    .map-card-header i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .map-card {
        padding: 1rem;
    }
    
    .map-card-header h3 {
        font-size: 1.3rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
} 