/* Global Styles */
:root {
    --primary-color: #4a2d8b;
    --secondary-color: #ff7f50;
    --accent-color: #28a745;
    --text-color: #333;
    --light-text: #fff;
    --background-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #ffffff;
    background-image: none;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.contact-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: visible;
    margin: 80px 0 100px 20px;
    width: calc(100% - 40px);
    background: linear-gradient(to bottom, transparent 0%, transparent 85%, #ffffff 85%, #ffffff 100%);
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 99%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 400%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 25%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Add overlay for better text visibility */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    z-index: 2;
    pointer-events: none;
    transform: scale(1.1);
    margin-bottom: -30px;
    transform-origin: center bottom;
}

.hero-curve svg {
    width: 113%;
    height: auto;
    display: block;
    min-width: 800px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    margin-left: 130px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: background 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 100px; /* Adjust to be above the curve */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--light-text);
    max-width: 600px;
    margin-left: 5%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.learn-more-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: white;
    position: relative;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.marker i {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.marker span {
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Services Overview */
.services-overview {
    padding: 5rem 5%;
    position: relative;
    background: white;
}

.services-circles {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.circle {
    width: 400px;
    height: 400px;
    padding: 3rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    /*overflow: hidden;*/
}

.circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: inherit;
    border-radius: 40%;
    animation: rotate 30s linear infinite;
}

.circle.left {
    background: var(--secondary-color);
}

.circle.right {
    background: var(--accent-color);
}

.circle h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.circle ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.circle li {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.circle i {
    font-size: 1.5rem;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 8rem 0 4rem;
    margin-top: -4rem;
    overflow: hidden;
    min-height: 100vh;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.services-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.curve-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 150px;
    background: white;
    clip-path: ellipse(60% 100% at 50% 0%);
}

.services-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    margin-bottom: 2rem;
}

.services-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
    z-index: 1;
    opacity: 0.03;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-item:hover::before {
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .services-section {
        padding: 6rem 0;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-section {
        grid-template-columns: 1fr;
    }
    
    .services-circles {
        flex-direction: column;
        align-items: center;
    }
    
    .circle {
        width: 100%;
        height: auto;
        border-radius: 20px;
        padding: 4rem 2rem;
    }
    
    .circle::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-item {
        padding: 2rem 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon img {
        width: 35px;
        height: 35px;
    }
    
    .services-section {
        padding: 5rem 0;
        margin-top: -3rem;
    }
    
    .curve-top,
    .curve-bottom {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .services-section {
        padding: 4rem 0;
        margin-top: -2rem;
    }
    
    .curve-top,
    .curve-bottom {
        height: 80px;
    }
    
    .footer-form input {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-form button {
        width: 100%;
    }
}

@media (max-width: 1440px) {
    .hero-curve svg {
        width: 100%;
        min-width: 100%;
        transform: translateX(-50%) scale(1);
    }
}

/* Tracking Section */
.tracking-section {
    padding: 4rem 2rem;
    background: #ffffff;
    background-image: none !important;
    position: relative;
    z-index: 1;
}

.tracking-container {
    /*max-width: 1200px;*/
    
    margin-left: 3%;
    margin-right: 3%;
    margin-top: -80px;
    padding: 4rem;
    background-color: #f0f2f5;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.tracking-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.tracking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tracking-input h3,
.tracking-status h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    gap: 1rem;
}

.tracking-number {
    flex: 1;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.tracking-number:focus {
    border-color: var(--primary-color);
}

.track-btn {
    background: #e67e22;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.track-btn:hover {
    background: #d35400;
}

.status-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.status-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 1rem;
}

.status-icon.completed {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

.status-icon.current {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
}

.status-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.status {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.date {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive styles for tracking section */
@media (max-width: 768px) {
    .tracking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tracking-section h2 {
        font-size: 2rem;
    }

    .status-timeline {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .timeline-item {
        flex: 0 0 50%;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .input-group {
        flex-direction: column;
    }

    .track-btn {
        width: 100%;
    }

    .timeline-item {
        flex: 0 0 100%;
    }
}

/* Contact Section */
.contact-section {
    background: #A4A4A4;
    padding: 3rem 2%;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; */
}

.contact-content h2 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #3a2a6b;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.info-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content h2 {
        font-size: 2rem;
    }
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.icon-item i {
    font-size: 1.2rem;
    color: #FFFFFF;
}

.icon-item span {
    color: #FFFFFF;
    font-size: 1.0rem;
    font-weight: 200;
} 
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

    .floating-button .btn {
        border-radius: 30px;
        padding: 10px 20px;
        background-color: #000;
        color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

        .floating-button .btn:hover {
            background-color: #444;
            transform: scale(1.1);
        }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 2% auto;
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 1;
}

.modal-body {
    display: flex;
    min-height: 300px;
}

.modal-image {
    flex: 1;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    max-height: none;
    height: 500px;
}

.modal-image img {
    width: 90%;
    height: 500px;
    /* object-fit: cover; */
}

.modal-form {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-form h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #08A841;
    outline: none;
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: teal
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-image {
        border-radius: 10px 10px 0 0;
        height: 120px;
        max-height: none;
    }
    
    .modal-form {
        padding: 15px;
    }
}