:root {
    --brand-blue: #0072ff;
    --brand-cyan: #00c6ff;
    --dark-color: #1a1a1a;
    --dark-blue: #1d1f5d;
    --turquoise: #c6edfb;
    --grey-color: #939393;
    --brand-red: #e31e24;
    --bright-red: #ff3344;

    --nav-gradient-top: #0c1a54;
    --nav-gradient-bottom: #3cb6e6;
}

body {
    background-color: #e9ecef;
    overflow-x: hidden;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
}

/* --- Side Panels with Realistic Rising Bubbles --- */
.side-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - 1320px) / 2); /* Calculates width based on Bootstrap xxl container */
    min-width: 60px;
    background:linear-gradient(
            to bottom,
            #1d1f5c   0%,   /* midnight navy  */
            #212565  25%,   /* deep indigo    */
            #2c3d82  33%,   /* dark blue      */
            #3a599c  41%,   /* mid blue       */
            #4577b6  50%,   /* royal blue     */
            #5394cc  58%,   /* sky blue       */
            #60aedf  66%,   /* light blue     */
            #68c1ed  75%,   /* pale sky       */
            #6dcff6  83%,   /* soft cyan      */
            #8fdcf8 100%    /* light cyan     */
    );
    z-index: -1;
    overflow: hidden;
}
.side-panel-left { left: 0; }
.side-panel-right { right: 0; }

.bubble {
    position: absolute;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.85);
    animation: riseAndWobble 12s infinite linear;
    bottom: -60px;
}
.bubble::after {
    content: '';
    position: absolute;
    top: 15%; left: 20%;
    width: 25%; height: 18%;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    transform: rotate(-30deg);
}

@keyframes riseAndWobble {
    0% {
        bottom: -50px;
        transform: translateX(0) scale(0.9);
        opacity: 0;
    }
    5% { opacity: 1; }
    90% { opacity: 0.9; }
    100% {
        bottom: 105%;
        transform: translateX(25px) scale(1.1);
        opacity: 0;
    }
}

.headingFont {
    font-family: 'Cinzel Decorative', serif;
}

/* --- Main Content Container --- */
.main-container {
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    min-height: 100vh;
}

/* Logo Layout Style */
.logo-box {
    line-height: 1.1;
    display: inline-block;
}

.logoImg {
    height: 110px;
    padding-left: 20px;
}

.logo-main {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}
.logo-sub {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    display: block;
    letter-spacing: 1.5px;
    margin-top: -2px;
}

.grid-header {
    border-bottom: 1px solid #dee2e6;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

/* Left Column Content Area */
.header-left-col {
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

/* Right Column Content Area */
.header-right-col {
    padding-left:50px;
    display: grid;
    grid-template-rows: auto auto;
    flex: 1;
    text-align: right;
}

.navbar-nav .nav-item {
    margin-right: 20px;
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px ;
    margin: 0 2px;
    background: none ;
    color: #4a5568 ;
    box-shadow: none ;
    border-radius: 0;
    position: relative;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-red) ;
    background: none !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color:var(--brand-red);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-toggler {
    margin-right: 20px;
}

.hero-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--grey-color);
    letter-spacing: -0.02em;
    line-height: 1.5;
}

.grey-heading{
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--grey-color);
    letter-spacing: -0.02em;
    line-height: 1.5;
    font-size: 2.2rem;
}

/* --- Hero Canvas Section Styles (FIXED FOR TOUCH TRANSLATION) --- */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
}

#hero-slideshow {
    touch-action: pan-y !important; /* Forces physical browser swipe pass-through */
    position: relative;
    overflow: hidden;
    user-select: none;           /* Prevent text selection during swipe */
    -webkit-user-select: none;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #f8f9fa;
}




.slide {
    width: 100%;
    height: auto;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;

}

/* Position dots fluidly below the changing image height */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background-color: var(--brand-blue);
    transform: scale(1.2);
    width: 24px;
    border-radius: 6px;
}

/* Hero Badge Styling */
.hero-badge-red {
    background-color: #ff3344;
    color: white;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brands Layout */
.brand-card-custom {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
    padding:0px;
}
.brand-card-custom:hover {
    transform: translateY(-8px);
    border-color: var(--brand-cyan);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* SVG Wave Divider */
.wave-container {
    position: relative;
    width: 100%;
    height: 100px;
    background: #ffffff;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px;
}
.wave-container svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Footer Section */
footer {
    background-color: #f4f9fd;
    padding: 60px 0 40px 0;
}
.social-strip-right a {
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    color: var(--brand-blue);
    margin-right: 12px;
    transition: all 0.3s ease;
}
.social-strip-right a:hover {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.welcome-row {
    padding-top: 90px;
}

.footerLogo img {
    max-height: 180px;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .side-panel { display: none; }
}

@media (max-width: 1220px)  {
    .navbar-nav .nav-item {
        margin-right: 10px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px 10px;
    }
}

@media (max-width: 1200px) {
    .logoImg { height: 90px; }
    .hero-title{ font-size: 42px;}
    .welcome-row { padding-top: 30px; }
    .navbar-expand-lg .navbar-nav .nav-link { font-size: 0.9rem; }
}

@media (max-width: 1090px) {
    .navbar-expand-lg .navbar-nav .nav-link { font-size: 0.8rem; }
    .navbar-expand-lg .navbar-nav .nav-link { padding: 10px 5px; }
}

@media (max-width: 991.5px) {
    .navbar-nav .nav-item { margin-right: 5px; }
    .navbar-expand-lg .navbar-nav .nav-link { padding: 10px 5px; }
    .nav-row { justify-content: center !important; padding: 15px !important; }
    .navbar-nav {
        gap: 8px;
        width: 100%;
        background: rgba(60, 182, 230, 0.92) ;
        transition: all 0.25s ease;
        box-shadow: 0 4px 10px rgba(0, 114, 255, 0.3);
        padding-bottom: 10px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0px 10px 5px 10px;
        font-size: 16px;
        color: white;
        display: inline-block;
        margin-right: 25px;
    }
    .nav-row { position: relative; }
    .nav-row .navbar-collapse {
        position: fixed;
        left: 0; right: 0;
        width: 100vw;
        top: 95px;
        padding: 10px 15px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
        z-index: 1050;
    }
    .nav-row .navbar-nav {
        width: 100%;
        margin: 0;
        padding: 20px 0 ;
    }
}

@media (min-width: 769px) {
    .grid-header { grid-template-columns: auto 1fr !important; }
    .header-left-col { border-bottom: none !important; }
    .nav-row { justify-content: flex-start; }
    .welcome-row { justify-content: flex-start !important; text-align: left !important; }
}

@media (max-width: 768px) {
    .footerLogo img { max-height: 80px; }
    .hero-title{ font-size: 30px;}
    .grid-header { grid-template-columns: 1fr !important; }
    .header-left-col { padding: 20px !important; }
    .header-container { display: flex !important; flex-direction: row !important; gap: 10px; }
    .header-right-col { padding-left: 0px; }
    .welcome-row { justify-content: center !important; text-align: center !important; padding: 15px !important; }
    .logoImg { height: 80px; }
}

@media (max-width: 620px) {
    .hero-title { font-size: 24px; }
    .logoImg { height: 75px; }
}

@media (max-width: 510px) {
    .hero-title { font-size: 20px; }
    .logoImg { height: 70px; }
}