/* ========================================
   GOOGLE FONTS
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;500;600;700;800&family=Work+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES (THEME COLORS)
======================================== */

:root{

    --primary-color: #060659;
    --secondary-color: #f70000;

    --text-dark: #111111;
    --text-light: #666666;

    --extra-light: #f8f7f4;
    --white: #ffffff;

    --yellow: #f7c100;

    --max-width: 1200px;
}

/* ========================================
   RESET STYLES
======================================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

/* ========================================
   BODY STYLES
======================================== */

body{

    /* NORMAL TEXT FONT */

    font-family: "Sen", sans-serif;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;

    color: var(--text-dark);

    
}

/* ========================================
   COMMON CONTAINER
======================================== */

.container{

    width: 90%;
    max-width: var(--max-width);

    margin: auto;
}

/* ========================================
   COMMON IMAGE STYLE
======================================== */

img{

    width: 100%;
    display: block;
}

/* ========================================
   COMMON BUTTON
======================================== */

.btn{

    display: inline-block;

    padding: 14px 32px;

    background: var(--secondary-color);
    color: var(--white);

    border-radius: 6px;

    font-size: 16px;
    font-weight: 600;

    transition: 0.4s ease;
}

.btn:hover{

    background: var(--primary-color);
}

/* ========================================
   HEADING FONTS
======================================== */

/* Main Headings */

h1, h2{

    font-family: "Playfair Display", serif;
}

/* Sub Headings */

h3, h4, h5{

    font-family: "Work Sans", sans-serif;
}

/* Stylish Text */

.stylish-text{

    font-family: "Dancing Script", cursive;
}
/* =======================================
            MIDDLE BANNER
========================================= */

#middle-promo-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a0a7a 50%, var(--primary-color) 100%);
    padding: 50px 0;
    overflow: hidden;
    margin: 0px 0;
}

/* Background Pattern */
#middle-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/banners/Home-Hero-banner-2.png');
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
}

/* Decorative Circles */
#middle-promo-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(247, 194, 0, 0.027);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Decorative Circle Left */
.middle-banner-circle {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(247, 193, 0, 0.06);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Banner Wrapper */
#promo-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease;
}

/* Banner Content */
#promo-content {
    flex: 1;
}

#promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

#promo-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--yellow);
    border-radius: 3px;
}

#promo-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Banner Button */
#promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(247, 0, 0, 0.3);
    font-size: 0.95rem;
}

#promo-btn i {
    transition: transform 0.3s ease;
}

#promo-btn:hover {
    background: var(--yellow);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 193, 0, 0.4);
}

#promo-btn:hover i {
    transform: translateX(8px);
}

/* Banner Icons */
#promo-icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: floatBounce 3s ease-in-out infinite;
    cursor: pointer;
}

.icon-1 {
    animation-delay: 0s;
}

.icon-2 {
    animation-delay: 0.5s;
}

.icon-3 {
    animation-delay: 1s;
}

.icon-box i {
    font-size: 2rem;
    color: var(--yellow);
    transition: all 0.3s ease;
}

.icon-box:hover {
    background: var(--yellow);
    transform: scale(1.1);
}

.icon-box:hover i {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* =======================================
              RESPONSIVE
========================================= */

/* Tablet View */
@media (max-width: 992px) {
    #middle-promo-banner {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    #promo-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    #promo-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    #promo-description {
        max-width: 100%;
    }
    
    #promo-title {
        font-size: 2rem;
    }
    
    #promo-icons {
        gap: 20px;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
    }
    
    .icon-box i {
        font-size: 1.5rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    #middle-promo-banner {
        padding: 50px 0;
        margin: 30px 0;
    }
    
    #promo-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    #promo-title {
        font-size: 1.6rem;
    }
    
    #promo-description {
        font-size: 0.9rem;
    }
    
    #promo-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    #promo-icons {
        gap: 15px;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
    }
    
    .icon-box i {
        font-size: 1.2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    #middle-promo-banner {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    #promo-wrapper {
        padding: 25px 15px;
    }
    
    #promo-title {
        font-size: 1.3rem;
    }
    
    #promo-description {
        font-size: 0.85rem;
    }
    
    #promo-icons {
        gap: 12px;
    }
    
    .icon-box {
        width: 45px;
        height: 45px;
    }
    
    .icon-box i {
        font-size: 1rem;
    }
}
/* =======================================
         GENERIC HERO BANNER
========================================= */

.hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    font-family: "Playfair Display", serif;
    animation: slideInLeft 0.8s ease;
    background: transparent;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =======================================
              RESPONSIVE
========================================= */

/* Tablet View */
@media (max-width: 992px) {
    .hero-banner {
        padding: 80px 0;
    }
    .hero-banner-title {
        font-size: 3rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0;
    }
    .hero-banner-title {
        font-size: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-banner {
        padding: 50px 0;
    }
    .hero-banner-title {
        font-size: 1.6rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 992px) {
    .hero-banner .container {
        max-width: 100% !important;
        padding-left: calc(((100% - 960px) / 2) + 0.75rem);
        padding-right: 0.75rem;
    }
}

@media (min-width: 1200px) {
    .hero-banner .container {
        padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
    }
}

@media (min-width: 1400px) {
    .hero-banner .container {
        padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
    }
}
/* =======================================
            BOTTOM BANNER SECTION
========================================= */

.bottom-banner-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Overlay for better text readability */
.bottom-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.bottom-banner-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bottom-banner-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.bottom-banner-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.bottom-banner-btn:hover {
    background: var(--yellow);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* =======================================
              RESPONSIVE
========================================= */

@media (max-width: 992px) {
    .bottom-banner-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .bottom-banner-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .bottom-banner-section {
        padding: 50px 0;
    }
    
    .bottom-banner-content h2 {
        font-size: 1.5rem;
    }
    
    .bottom-banner-content p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .bottom-banner-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .bottom-banner-section {
        padding: 40px 0;
    }
    
    .bottom-banner-content h2 {
        font-size: 1.3rem;
    }
    
    .bottom-banner-content p {
        font-size: 0.85rem;
    }
}