/* Contact Page */
.contact-page h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.contact-page p {
    color: #333;
    margin-bottom: 30px;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #000;
}

.contact-info i {
    color: red;
    margin-right: 8px;
}

.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: red;
    outline: none;
}

.contact-form .btn-custom {
    background-color: #000;
    color: #FAF9F6;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-form .btn-custom:hover {
    background-color: red;
    color: #fff;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #000;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: red;
}



.contact-banner {
    position: relative;
    width: 100%;
    height: 250px;
background-color: #757575;

/* red gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 40px;
    z-index: 1;
}

.contact-banner .banner-content h1 {
    color: #F8F8FF;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    position: relative;
}
.contact-banner .banner-decor span {
    position: absolute;
    z-index: 1;
}

.contact-banner .dot {
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    display: block;
}

.contact-banner .dot1 { top: 30px; left: 50px; }
.contact-banner .dot2 { top: 80px; right: 80px; }
.contact-banner .dot3 { bottom: 40px; left: 120px; }

.contact-banner .star {
    font-size: 1.5rem;
    color: yellow;
}

.contact-card a {
      text-align: left !important;
}
.contact-banner .star1 { top: 50px; right: 150px; }
.contact-banner .star2 { bottom: 60px; right: 60px; }
.contact-banner .star3 { bottom: 100px; left: 200px; }
@media (max-width: 768px) {
    .contact-banner {
        height: 180px;
    }
    .contact-banner .banner-content h1 {
        font-size: 2rem;
    }
    .contact-banner .dot {
        width: 8px;
        height: 8px;
    }
    .contact-banner .star {
        font-size: 1rem;
    }
     .contact-card a {
      overflow-wrap: anywhere;
      font-size: 13px; /* optional */
  }
}

.contact-info-section {
    width: 100%;
}

.contact-info-section .contact-card {
    background-color: #fff;           /* white background */
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    min-height: 150px;
   
}

.contact-info-section .contact-card:hover {
    transform: translateY(-5px);
}

.contact-info-section .contact-icon {
    font-size: 2.2rem;
    color: red;                        /* red icons */
    margin-bottom: 10px;
}

.contact-info-section h5 {
    font-weight: 600;
    color: #000;                        /* black text */
    margin-bottom: 5px;
}

.contact-info-section p {
    font-size: 0.95rem;
    color: #000;                        /* black text */
}

.contact-info-section .btn-custom {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    padding: 6px 12px;
    transition: all 0.3s;
}

.contact-info-section .btn-custom:hover {
    background-color: red;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-section .contact-card {
        min-height: auto;
        padding: 15px 10px;
    }
}

/* Image styling */
.contact-section .contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Optional: shadow around image */
.contact-section .contact-image img {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Form styling (existing) */
.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: red;
    outline: none;
}

.contact-form .btn-custom {
    background-color: #000;
    color: #FAF9F6;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-form .btn-custom:hover {
    background-color: red;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-section .contact-image {
        margin-bottom: 20px;
    }
}
/* Floating Banner Container */
/* Floating Banner Container */
/* Floating Banner Container */
.floating-banner {
    width: 100%;
    background-color: #fff; /* White background */
    overflow: hidden;
    position: relative;      
    padding: 10px 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
    height: 100px;
}

/* Floating Text */
.floating-banner .floating-text {
    display: inline-flex;       /* inline-flex allows mixing text + image */
    align-items: center;        /* vertically center image with text */
    white-space: nowrap;       
    font-size: 2rem;           
    font-weight: bold;
    color: #000;               
    position: absolute;
    top: 50%;                  
    transform: translateY(-50%);
    right: -100%;              
    animation: floatLeft 15s linear infinite;
   
}

/* Red dots between words */
.floating-banner .floating-text .dot {
    color: red;
    margin: 0 0.5rem;
}

/* Image inside floating text */
.floating-banner .floating-text .floating-logo {
    height: 2.5rem;       /* match text height */
    margin-left: 0.5rem;
    background-color: transparent;
}

/* Animation: move from right to left */
@keyframes floatLeft {
    0% { right: -100%; }
    100% { right: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-banner .floating-text {
        font-size: 1.2rem;
    }
    .floating-banner .floating-text .floating-logo {
        height: 1.5rem;
    }
}

