/* Modern Courier Company Landing Page - Premium Design */

:root {
    --primary-color: rgb(13 107 245);
    --primary-dark: rgb(13 107 245);
    --secondary-color: #004E89;
    --accent-color: #1A659E;
    --dark-color: #1E1E1E;
    --light-color: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --gradient-primary: linear-gradient(135deg, rgb(13 107 245) 0%, rgb(13 107 245) 100%);
    --gradient-dark: linear-gradient(135deg, #1E1E1E 0%, #2C3E50 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark); 
    overflow-x: hidden;
}

/* Header Styles */
.header {
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 7px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    -webkit-text-fill-color: var(--primary-color);
    font-size: 2rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(53, 90, 255, 0.1);
}

.btn-login {
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 107, 245, 0.4);
}

.btn-login i {
    font-size: 0.9rem;
}

/* Hero Section Styles */
.hero-section {
    margin-top: 75px;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(30 30 30 / 58%) 0%, rgb(8 8 8 / 62%) 100%) ;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(53, 83, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(53, 83, 255, 0.4);
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
}
.btn-login {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(53, 83, 255, 0.4);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(53, 83, 255, 0.4);
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 12px 33px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 1s ease-out;
}

.animate-fade-up-delay {
    animation: fadeUp 1s ease-out 0.3s both;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 1s ease-out 0.6s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Navigation */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 22px;
    font-weight: 700;
}

.hero-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 14px;
    height: 14px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    width: 40px;
    border-radius: 10px;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    color: white;
    margin-top: -1px;
    position: relative;
    z-index: 5;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: white;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 10px 0;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title h2 {
    color: var(--text-dark);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 10px;
    margin: 0 auto;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    height: 350px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-badge i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content p{
    font-size: 14px;
}
.feature-content h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    background: white;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #f0f0f0;
    border: 1.5px solid black;
    border-radius: 25px;
}
.product-image:hover{
    border: 1.5px solid var(--primary-color);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-heading {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    background: rgb(13 107 245);
    backdrop-filter: blur(10px);
    padding: 5px 20px;
    border-radius: 30px;
    transition: all 0.3s 
ease;
cursor: pointer;
}

.product-heading p {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-transform: capitalize;
    transition:   0.4s ease;
}

.product-card:hover .product-heading {
    background: rgba(13, 107, 245, 0.9);
    transform: translateY(-5px);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 107, 245, 0.9) 0%, rgba(13, 107, 245, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}
.product-card:hover .product-heading p{
    color: black;
}
.product-card:hover .product-heading{
    background: white;
}

.product-overlay .btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-overlay .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 107, 245, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: rotate(5deg) scale(1.1);
}

.contact-details h5 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-details a {
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color) !important;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer h5 {
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer h5 i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.8;
}

.footer a {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.footer ul li {
    margin-bottom: 12px;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .btn-login{
        margin-top: 10px;
    }
    .phoneview{
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .section-title h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
   
    .hero-section {
        margin-top: 70px;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
    
    .btn-login {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-section,
    .products-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .product-card {
        margin-bottom: 25px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-details{
        text-align: center;
        width: 100%;
    }
    .hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    display: none;
}
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
 
    
    .about-badge {
        /* position: static;
        margin-top: 20px;
        display: inline-flex; */
        bottom: 10px;
    right: 10px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
}
