/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* FIXED BACKGROUND GIF */
body {
    background: url("fixedbg.png") no-repeat center center fixed;
    background-size: cover;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    color: white;
}

.sidebar * {
    text-align: justify;
    text-justify: inter-word;
}

.sidebar .logo img {
    width: 150px;
    display: block;
    margin: 0 auto 30px auto;
}

.sidebar .side-links {
    list-style: none;
    padding-left: 20px;
}

.sidebar .side-links li {
    margin: 20px 0;
}

.sidebar .side-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.sidebar .side-links li a:hover {
    color: #ffcc00;
}

.sidebar .social a {
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-top: 5px;
    text-align: justify;
}

.sidebar .social a:hover {
    color: #ffd700;
}

.sidebar .phone {
    margin-top: 5px;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    text-align: justify;
}

.fb-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #1877f2; /* Facebook blue */
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    margin-top: 5px;
}
.fb-icon:hover {
    background-color: #0f5dc8; /* darker blue on hover */
}




/* TOP MENU BAR */
.topbar {
    margin-left: 220px;
    width: calc(100% - 220px);
    background: rgba(0,0,0,0.8);
    padding: 15px 0;
    position: fixed;
    top: 0;
    z-index: 10;
}

.topbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.topbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 12px;
    transition: 0.3s;
}

.topbar ul li a:hover {
    background: #ffcc00;
    color: black;
    border-radius: 5px;
}

/* MAIN CONTENT */
.main {
    margin-left: 220px;
    margin-top: 100px;
    padding: 30px;
    color: white;
    text-shadow: 1px 1px 3px black;
}

/* HERO SECTION */
.hero {
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: rgba(0,0,0,0.4); /* overlay on top of your fixed GIF */
    backdrop-filter: blur(2px);
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 60px;
    color: #fff;
    text-shadow: 2px 2px 6px black;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    color: #f0f0f0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px black;
}

.hero-btn {
    padding: 14px 30px;
    background: #ffcc00;
    color: black;
    font-size: 20px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: bold;
}

.hero-btn:hover {
    background: white;
    color: black;
    box-shadow: 0 0 15px #ffcc00;
}

/* SUGGESTION PAGE */
.suggestion-container {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
    margin: 40px auto;
    color: white;
    text-align: center;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.suggestion-container h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.suggestion-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

.suggestion-form input,
.suggestion-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 16px;
}

.suggestion-form textarea {
    height: 120px;
    resize: none;
}

.suggestion-form button {
    background: #ffcc00;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.suggestion-form button:hover {
    background: white;
    color: black;
    box-shadow: 0 0 10px #ffcc00;
}

.suggestion-box {
    margin-top: 30px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.suggestion-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

/* Thank You Box */
.thankyou-box {
    margin-top: 25px;
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}


/* CONTACT PAGE */
.contact-container {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 700px;
    margin: 40px auto;
    color: white;
    text-align: center;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.contact-container h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 16px;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    background: #ffcc00;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: white;
    color: black;
    box-shadow: 0 0 10px #ffcc00;
}

/* Thank You Box */
.thankyou-box {
    margin-top: 25px;
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* SERVICES PAGE */
.services-container {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin: 40px auto;
    color: white;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}


/* PORTFOLIO PAGE */
.portfolio-container {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin: 40px auto;
    color: white;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.portfolio-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.map-box {
    margin-top: 30px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    color: white;
}

/* FOOTER */
.footer {
    margin-left: 220px;
    width: calc(100% - 220px);
    background: rgba(0,0,0,0.8);
    color: white;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    font-size: 16px;
}

/* ABOUT PAGE SECTIONS MATCHING VMV STYLE */
.about-container .vmv-section {
    margin-top: 30px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255,255,255,0.2);
}

.about-container .vmv-section h2 {
    color: #ffcc00;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px black;
}

.about-container .vmv-section p {
    font-size: 18px;
    line-height: 1.6;
}

/* VISION MISSION VALUES */
.vmv-section {
    margin-top: 40px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255,255,255,0.2);
}

.vmv-section h2 {
    color: #ffcc00;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px black;
}

.values-list {
    margin-top: 10px;
    padding-left: 20px;
}

.values-list li {
    margin-bottom: 8px;
    font-size: 18px;
}

/* VIDEOS PAGE */
.videos-container {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin: 40px auto;
    color: white;
    text-align: center;
}

.video-box {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* THEORY PAGE */
.theory-container {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin: 40px auto;
    color: white;
}

.theory-section {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
}

.theory-section h3 {
    color: #ffcc00;
    margin-bottom: 10px;
}

/* DOWNLOADABLE NOTES */
.notes-section {
    margin-top: 40px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255,255,255,0.2);
    text-align: center;
}

.notes-section h2 {
    color: #ffcc00;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px black;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.note-box {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
    transition: 0.3s;
}

.note-box:hover {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 15px #ffcc00;
}

.note-box h4 {
    margin-bottom: 5px;
    color: #ffcc00;
}