* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Alexandria', sans-serif;
}
@font-face {
    font-family: 'Dafont';
    src: url('font-family/Pacifico.ttf') format('opentype');
}
@font-face {
    font-family: 'Dafont1';
    src: url('font-family/Idealy2.otf') format('opentype');
}

@font-face {
    font-family: 'Dafont2';
    src: url('font-family/ValentineSoul.ttf') format('truetype');
}

@font-face {
    font-family: 'Dafont3';
    src: url('font-family/Coffee Soda.otf') format('opentype');
}













/* ------------------------------------------ Basic right & left autoscroll styling --------------------------- */
.hidden-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s;
  }
  
  .hidden-right {
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s;
  }
  
  .show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
  
  .hidden-left:nth-child(2){
    transition-delay: 200ms;
  }
  .hidden-left:nth-child(3){
    transition-delay: 500ms;
  }
  .hidden-left:nth-child(4){
    transition-delay: 700ms;
  }









/* ------------------------------------------ underline-effect  --------------------------- */
.underline-effect {
    position: relative;
    text-decoration: none;
    padding-bottom: 4px;
    font-size: 1rem;
    font-weight: bold;
}

/* Pseudo-element for the underline */
.underline-effect::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    border-radius: 8px;
    background-color: #007bff; /* Blue color for the underline */
    transition: width 0.4s ease, left 0.4s ease;
}

/* Hover effect expanding the line outward from the center */
.underline-effect:hover::after,
.underline-effect.active::after {
    width: 100%;
    left: 0;
}













/* ------------------------------------------ pop-up-text --------------------------- */
/* Default transition */
.pop-up-text {
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.pop-up-text.visible {
    opacity: 1;
    transform: translateY(0);
}


.pop-up-text:nth-child(2){
    transition-delay: 200ms;
  }
  .pop-up-text:nth-child(3){
    transition-delay: 600ms;
  }
  .pop-up-text:nth-child(4){
    transition-delay: 700ms;
  }

/* Disable transition on small screens */
@media (max-width: 768px) {
    .pop-up-text {
        transition: none;
        opacity: 1;
        transform: translateY(0); /* Reset position */
    }
}


















/* -----------------------------------------------------------------------  header ----------------------------------------------------------------------- */
/* .header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.571);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.571);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.navbar img {
    height: 40px;
}
.navbar ul {
    list-style: none;
    display: flex;
}
.navbar ul li {
    margin: 12px;
}
.navbar ul li a {
    color: #ffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}
.navbar ul li a:hover{
    transform: scale(1.05);
}
.hero-content {
    position: absolute;
    top: 40%;
    left: 6%;
    transform: translateY(-50%);
    color: #ffff;
    max-width: 70%;
    z-index: 1;
}
.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.hero-content p {
    font-size: 1.2rem;
    font-weight: 500;
    width: 50%;
}
.ptxt{
    font-family: Dafont1;
    font-size: 1.2rem;
    font-weight: 400;
}
.menu-toggle{
    display: none;
}
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.941);
        backdrop-filter: blur(10px);
        text-align: center;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; 
    }
    .navbar ul.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
        color: white;
        font-size: 1.5rem;
    }
    .hero-content {
        max-width: 80%;
    }
    .hero-content h2 {
        word-wrap: break-word;
        font-size: 2.3rem;
    }
    .hero-content p {
        width: auto;
    }
} */





























/* ------------------------------------------  footer --------------------------- */
footer {
    background: linear-gradient(135deg, #1c3687 0%, #152a6b 100%);
    color: white;
    padding: 50px 0 20px; /* Changed to 0 on sides for full width */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px; /* Added padding to container instead of footer */
}

.footer-section {
    flex: 1;
    min-width: 200px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #4caf50);
    border-radius: 2px;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    position: relative;
}

/* Enhanced Link Hover Effects */
.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00aaff;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-section ul li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    color: #4caf50;
    transform: scale(1.2);
}

/* Get Directions Link */
.footera {
    color: #00aaff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #00aaff;
    border-radius: 25px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footera:hover {
    background: #00aaff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    width: 100%;
    max-width: 200px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: #00aaff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 170, 255, 0.4);
}

.social-icons a:nth-child(2):hover {
    background: #1da1f2; /* Twitter blue */
}

.social-icons a:nth-child(3):hover {
    background: #0077b5; /* LinkedIn blue */
}

/* Footer Subscribe Section - FULL WIDTH */
.footer-subscribe {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1c3687;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px; /* Increased padding for better spacing */
    margin: 50px 0 30px; /* Removed side margins for full width */
    width: 100%; /* Full width */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Optional: Add a subtle pattern or decorative elements */
.footer-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 2px 2px;
}

.footer-subscribe .logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00aaff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subscribe-text {
    color: #1c3687;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 600px;
}

.subscribe-text p {
    margin: 0;
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
    font-size: 0.9rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px 0;
}

.footer-bottom a {
    color: #00aaff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-bottom a:hover {
    color: #ffffff;
    background: rgba(0, 170, 255, 0.2);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li a {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-section ul li a::before {
        display: none;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
        transform: none;
    }
    
    .footer-subscribe {
        padding: 40px 15px;
        margin: 40px 0 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cta-button {
        max-width: 100%;
    }
    
    .footer-bottom {
        padding: 20px 15px 0;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 15px;
    }
    
    .footer-subscribe .logo {
        font-size: 2rem;
    }
    
    .subscribe-text {
        font-size: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-subscribe {
        padding: 30px 15px;
        margin: 30px 0 20px;
    }
}