.site-header {
    background-color: #007bff;
}

.nav-link {
    font-weight: 600;
}

.nav-link:hover {
    text-decoration: underline;
}
header{
    background-color: rgb(6 29 63);
}

.carousel-inner{
    height: 600px;
}
.caption-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 10px;
    display: inline-block;
    max-width: 90%;
}


@media (max-width: 767px) {
    .caption-content h2 {
        font-size: 1.5rem;
    }

    .starting-price {
        font-size: 1.1rem;
    }
}

.aboutBox {
    background-color: #ffffff; /* Light gray background */
    padding: 40px 20px;
    border-radius: 10px;
}

.zt-container {
    max-width: 900px;
    margin: 0 auto;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    
    border-radius: 50px;
}

.sub-title {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 20px;
}

.separator {
    width: 80px;
    height: 4px;
    background-color: #007bff;
    margin: 20px auto;
    border-radius: 2px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    color: #444;
    
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .title {
        font-size: 1.75rem;
    }

    .sub-title {
        font-size: 1rem;
    }

    .about-text {
        font-size: 0.95rem;
    }
}




.contact-section {
    background: #1a1a1a;
    color: #fff;
}

.separator {
    width: 60px;
    height: 3px;
    background:#007bff;
    margin: 0 auto;
    border-radius: 2px;
}

.contact-cards {
    gap: 20px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #2c2c2c;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.contact-icon {
    font-size: 2.5rem;
    color:black;
}

.contact-card h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-card a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
    }
}

.footer-modern {
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
}

.footer-modern a {
    color:#007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-modern a:hover {
    color: #ff3366;
}

.footer-links li {
    display: inline;
    margin: 0 10px;
}

.footer-modern .designed-by a {
    font-weight: bold;
    color: #fff;
}

.footer-modern .designed-by a:hover {
    color:#007bff;
}


.carousel-container {
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: rgba(0, 0, 0, 0.3); /* optional dark overlay */
}

.carousel-text {
    max-width: 50%;
}

.carousel-text h2 {
    font-size: 42px;
    font-weight: 700;
}

.carousel-text p.starting-price {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 500;
}

.carousel-form {
    max-width: 350px;
}

.carousel-form input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.carousel-form button.btn-gradient {
    background: linear-gradient(45deg, #d60d45, #ff3366);
    color: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-form button.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .carousel-overlay {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }
    .carousel-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .carousel-form {
        max-width: 100%;
    }
}


/* Overlay is handled by Tailwind bg-black/50 */

/* Parallax Background */
.features-section {
    position: relative;
    overflow: hidden;
}
.features-bg {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1470&q=80'); /* replace with your image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: 1;
    top: 0;
    left: 0;
}

/* Feature Card Styles */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.4s, background 0.4s, box-shadow 0.4s;
    cursor: pointer;
}
.feature-card:hover {
    transform: translateY(-15px);
    background: linear-gradient(135deg, #22C3E6, #FE5300);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Feature Titles and Text */
.feature-title {
    font-weight: 600;
    color: white;
    transition: color 0.4s;
}
.feature-desc {
    font-size: 0.9rem;
    color: #ddd;
}

/* Icon Animation */
.feature-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.4s;
}
.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Responsive Text Sizes */
@media(max-width: 768px){
    .feature-title { font-size: 1rem; }
    .feature-desc { font-size: 0.85rem; }
    .feature-icon { width: 45px; height: 45px; }
}

/* Section & Background */
.contact-section {
    background: linear-gradient(135deg, #0d1117, #1a1f29);
    overflow: hidden;
    position: relative;
    padding: 80px 0;
}

/* Contact Cards */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 30px;
    transition: transform 0.4s, border 0.4s, box-shadow 0.4s;
    cursor: pointer;
}
.contact-card:hover {
    transform: translateY(-12px);
    border: 2px solid #22C3E6;
    box-shadow: 0 20px 50px rgba(34,195,230,0.5);
}

/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, #22C3E6, #FE5300);
    color: white;
    font-size: 1.8rem;
    transition: transform 0.4s, box-shadow 0.4s;
}
.contact-card:hover .icon-circle {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 20px #22C3E6, 0 0 40px #FE5300;
}

/* Text */
.contact-card h5 {
    margin-top: 15px;
    font-size: 1.1rem;
}
.contact-card a, .contact-card p {
    font-size: 0.95rem;
    color: #ddd;
    transition: color 0.4s;
}
.contact-card:hover a, .contact-card:hover p {
    color: #fff;
}

/* Separator */
.contact-section .separator {
    width: 80px;
    height: 3px;
    margin: 20px auto;
    border-radius: 3px;
    background: linear-gradient(90deg, #22C3E6, #FE5300);
}

/* Responsive */
@media(max-width:768px){
    .contact-cards {
        flex-direction: column;
    }
}

/* Canvas */
#contactParticles {
    z-index: 0;
}











