/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f3f3f3;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.2rem;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.7rem;
    color: #0077b6;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: justify;
}

ul {
    list-style-type: none;
    padding: 20px;
    margin: 0;
}

li {
    margin-bottom: 12px;
}

a {
    color: #0077b6;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #005f8f;
}

/* HEADER - LUXURIOUS DESIGN WITH ABSTRACT LINES */
header {
    background: url('bheader.png') center/cover no-repeat, linear-gradient(120deg, #ffffff, #f8f9fa);
    color: #2c3e50;
    padding: 100px 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 5px 10px rgba(70, 64, 64, 0.1);
    position: relative;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Moves the content lower */
    align-items: center;
    border-bottom: 5px solid #0077b6;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f3f3f3;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.2rem;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.7rem;
    color: #0077b6;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: justify;
}

ul {
    list-style-type: none;
    padding: 20px;
    margin: 0;
}

li {
    margin-bottom: 12px;
}

a {
    color: #0077b6;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #005f8f;
}

/* HEADER - LUXURIOUS DESIGN WITH ABSTRACT LINES */
header {
    background: url('bheader.png') center/cover no-repeat, linear-gradient(120deg, #ffffff, #f8f9fa);
    color: #2c3e50;
    padding: 100px 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 5px 10px rgba(70, 64, 64, 0.1);
    position: relative;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Moves the content lower */
    align-items: center;
    border-bottom: 5px solid #0077b6;
}

/* LOGO - SMALLER SIZE WITH CENTER GLOW EFFECT */
header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
}

header .logo img {
    max-width: 100px; /* Reduced logo size */
    height: auto;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

header .logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgb(255, 242, 170)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.901));
}


/* HEADER TITLE - MOVED LOWER WITH HOVER EFFECT */
header h1 {
    font-size: 2.0rem;
    font-weight: 900;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(to right, #000000, #675017, #ffdd00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
    padding: 60px 20px;
    border-radius: 15px;
    display: inline-block;
    position: relative;
    top: 180px; /* Moves text lower into the river area */
    transition: all 0.3s ease-in-out;
}

/* HOVER EFFECT FOR TITLE */
header h1:hover {
    background: rgba(255, 255, 255, 1);
    -webkit-text-fill-color: #034a91; /* Navy blue */
    padding: 10px 0;
    width: 100%;
    text-align: center;
    display: block;
    border-radius: 2px;
    position: absolute;
    top: 270px; /* Keeps hover bar in the same position */
    left: 0;
    right: 0;
}


/* NAVBAR - MOVED BELOW TITLE */
nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 10px 0;
    border-radius: 50px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.096);
    max-width: 700px;
    margin: 30px auto 0; /* Adjusted margin to move below title */
    position: relative;
    transition: all 0.3s ease-in-out;
    top: 130px; /* Aligns below the title */
}

/* NAVBAR - STICKY EFFECT */
/* Sticky Navbar Behavior */
nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 12px 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95); /* Slight transparency */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

/* NAVIGATION MENU */
nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* NAVIGATION ITEMS */
nav ul li {
    margin: 0 12px;
}

/* NAVIGATION LINKS */
nav ul li a {
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* NAVIGATION HOVER EFFECT */
nav ul li a:hover {
    color: #ffffff;
    background: #0077b6;
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.2);
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
    header {
        padding: 30px 0;
    }

    header h1 {
        font-size: 2.2rem;
    }

    header .logo img {
        max-width: 120px;
    }

    nav {
        max-width: 90%;
    }

    nav ul {
        flex-direction: row;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 8px;
    }

    nav ul li a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* ABOUT US SECTION - LUXURIOUS ENHANCEMENT */
#about {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 80px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

#about:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

#about::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.2), transparent);
    z-index: 1;
}

#about .container {
    text-align: center;
    padding: 40px;
    position: relative;
    z-index: 2;
}

#about h2 {
    font-size: 2.8rem;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: #002244;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

#about h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #0077b6;
    transform: translateX(-50%);
    border-radius: 2px;
}

#about .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

#about .icon {
    font-size: 4rem;
    color: #0077b6;
    margin-bottom: 20px;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 119, 182, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 119, 182, 0.8);
    }
}

#about p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    max-width: 850px;
    margin: 15px auto;
    font-weight: 500;
}

@media (max-width: 768px) {
    #about h2 {
        font-size: 2.3rem;
    }
    #about p {
        font-size: 1.1rem;
    }
    #about .icon {
        font-size: 3rem;
    }
}
/* SERVICES SECTION - MODERN & PROFESSIONAL DESIGN */
#services {
    background: linear-gradient(135deg, #f8f9fa, #e3eaf3);
    padding: 80px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

#services h2 {
    font-size: 2.8rem;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: #002244;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.service-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    position: relative;
}

.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-box i {
    font-size: 3rem;
    color: #0077b6;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

.service-box:hover i {
    color: #004c75;
}

.service-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002244;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    #services h2 {
        font-size: 2.3rem;
    }
}
/* VISION SECTION - ELITE PRESENTATION */
#vision {
    background: linear-gradient(135deg, #ffffff, #e8f1f8);
    padding: 90px 0;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#vision::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.2), transparent);
    z-index: 1;
}

#vision h2 {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: #002244;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

#vision .content {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #333;
    max-width: 850px;
    margin: auto;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

#vision .icon {
    font-size: 4.5rem;
    color: #0077b6;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #vision h2 {
        font-size: 2.5rem;
    }
    #vision .content {
        font-size: 1.2rem;
    }
    #vision .icon {
        font-size: 3.5rem;
    }
}
/* MISSION SECTION - PRESTIGE DESIGN */
#mission {
    background: linear-gradient(135deg, #f8f9fa, #e3eaf3);
    padding: 90px 0;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#mission::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.2), transparent);
    z-index: 1;
}

#mission h2 {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: #002244;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

#mission .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 2;
}

#mission .feature-list li {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    max-width: 300px;
    flex: 1;
}

#mission .feature-list li:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#mission .feature-list i {
    font-size: 3rem;
    color: #0077b6;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

#mission .feature-list li:hover i {
    color: #004c75;
}

#mission .feature-list strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #002244;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    #mission h2 {
        font-size: 2.5rem;
    }
    #mission .feature-list {
        flex-direction: column;
        align-items: center;
    }
    #mission .feature-list li {
        max-width: 90%;
    }
}
/* WHY CHOOSE US - EXCLUSIVE & PRESTIGE DESIGN */
#why-choose-us {
    background: linear-gradient(135deg, #ffffff, #eef5fc);
    padding: 100px 0;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#why-choose-us::before {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.2), transparent);
    z-index: 1;
}

#why-choose-us h2 {
    font-size: 3.2rem;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: #002244;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

#why-choose-us .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

#why-choose-us .feature-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    position: relative;
}

#why-choose-us .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#why-choose-us .feature-box i {
    font-size: 3.5rem;
    color: #0077b6;
    margin-bottom: 20px;
    transition: color 0.3s ease-in-out;
}

#why-choose-us .feature-box:hover i {
    color: #004c75;
}

#why-choose-us .feature-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #002244;
    margin-bottom: 10px;
}

#why-choose-us .feature-box p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.7;
}

/* STYLISH ANIMATED ENTRY */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#why-choose-us .feature-box {
    animation: fadeInUp 1s ease-in-out;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    #why-choose-us h2 {
        font-size: 2.5rem;
    }
    #why-choose-us .feature-grid {
        grid-template-columns: 1fr;
    }
}
/* CONTACT SECTION - ULTRA LUXURY DESIGN */
#contact {
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    padding: 90px 0;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.2), transparent);
    z-index: 1;
}

#contact h2 {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: #002244;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* CONTACT FORM */
#contact form {
    max-width: 700px;
    margin: auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease-in-out;
}

#contact form:hover {
    transform: scale(1.02);
}

/* FORM INPUTS */
#contact input,
#contact textarea {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid #0077b6;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease-in-out;
    background: #f9f9f9;
}

#contact input:focus,
#contact textarea:focus {
    border-color: #004c75;
    box-shadow: 0 0 10px rgba(0, 119, 182, 0.3);
}

/* SUBMIT BUTTON */
#contact button {
    background: linear-gradient(135deg, #0077b6, #004c75);
    color: #fff;
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}

#contact button:hover {
    background: #004c75;
    transform: scale(1.05);
}

/* CONTACT DETAILS */
#contact address {
    font-size: 1.2rem;
    color: #002244;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

#contact address a {
    color: #0077b6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

#contact address a:hover {
    text-decoration: underline;
    color: #004c75;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    #contact h2 {
        font-size: 2.5rem;
    }
    #contact form {
        max-width: 90%;
        padding: 20px;
    }
}
/* STYLISH CONTACT MESSAGE */
#contact p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #002244;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, #0077b6, #004c75);
    color: white;
    padding: 15px;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* HOVER EFFECT */
#contact p:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
/* FOOTER - LUXURIOUS FINAL TOUCH */
footer {
    background: linear-gradient(135deg, #002244, #0077b6);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    position: relative;
}

footer p {
    margin: 0;
    font-size: 1.1rem;
}

footer .social-icons {
    margin-top: 15px;
}

footer .social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
}

footer .social-icons a:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

/* GLOWING FOOTER EFFECT */
footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    background: #ffcc00;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: glowFooter 1.5s infinite alternate;
}

@keyframes glowFooter {
    from {
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    footer p {
        font-size: 1rem;
    }
}
/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth;
}

/* Active Navigation Highlight */
nav ul li a.active {
    background: #0077b6;
    color: white !important;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
