*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root{
    --red-color: #f44336;
}

body{
    background: #FFFFFF;
    background-size: contain;
    object-fit: contain; 
    overflow-x: hidden;
}

/* -------   Essentials   ------ */

.logo_color {
    color: #A7BEAE; /* Sets the color of the first line to white */
}

.white {
    color: #FFFFFF; /* Sets the color of the first line to white */
}

.yellow {
    color: yellow; /* Sets the color of the second line to yellow */
}

.terracotta_red {
    color: #B85042; /* Sets the color of the second line to yellow */
}
.off_white {
    color: #fcf6f5; /* Sets the color of the second line to yellow */
}

h1{
    font-size: 3.5rem;
    text-align: center;
    margin: 2rem;
    color: #fff;
}

h2{
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
}

h3{
    font-size: 1.5rem;
    color: #fff;
    margin: 1rem;
    text-align: center;
}

h4{
    font-size: 1.3rem;
    color: black;
    margin: 1rem;
    text-align: center;
}

p{
    font-size: 15px;
    color: #fff;
    margin: .5rem 1rem;
    text-align: center;
}


/* INTRO [ANIMATIONS]*/

.intro{
    background: black;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    /* transform: translateY(100%); */
}

.intro-text h1{
    padding: 0;
    margin: 0;
    text-align: left;
}
/* HIDE [h1 or text] */

.hide{
    overflow: hidden;
}

.hide span{
    display: inline-block;
    transform: translateY(100%);
}

/* SLIDER [ANIMATIONS] */

.slider{
    background: #2a2e33;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: translateY(100%);
}

 /* Base styles */
  /* Base styles */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

header {
    background-color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.logo img {
    width: 200px;
    height: auto;
}

.menu-toggle {
    display: none;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: auto;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    display: block;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
    background-color: #941236;
    color: #fff;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    min-width: 180px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #fff;
    padding: 10px 20px;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #ff7f00;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.topic-areas {
  background-color: #ffffff;
  padding: 60px 40px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.topic-areas h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 15px;
}

.topic-areas > p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.topic-card {
  background-color: #fde8f0;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.topic-card h3 {
  color: #941236;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.topic-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more-btn {
  background-color: #941236;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.read-more-btn:hover {
  background-color: #6f0f2a;
}

.registration-modern {
  background-color: #ffffff;
  padding: 80px 24px;
  font-family: 'Segoe UI', sans-serif;
  color: #000000;
}

.reg-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.reg-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #941236;
}

.reg-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #000000;
}

.reg-dates p {
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #000000;
}

.reg-section {
  margin-top: 30px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000000;
}

.reg-section ul {
  margin-top: 10px;
  padding-left: 20px;
  color: #000000;
}

.reg-section ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.reg-button {
  text-align: center;
  margin-top: 60px;
}

.reg-button button {
  background-color: #941236;
  color: #ffffff;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.reg-button button:hover {
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .reg-title {
    font-size: 2rem;
  }

  .reg-intro {
    font-size: 1rem;
  }

  .reg-section {
    font-size: 1rem;
  }
}

.speakers-section {
  background-color: #ffffff;
  padding: 80px 24px;
  font-family: 'Segoe UI', sans-serif;
  color: #000000;
}

.speakers-container {
  max-width: 1100px;
  margin: 0 auto;
}

.speakers-title {
  text-align: center;
  font-size: 2.4rem;
  color: #941236;
  margin-bottom: 50px;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.speaker-card {
  background-color: #f6eaaf;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.speaker-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #941236;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.speaker-name:hover {
  color: #6c0d23;
}

.speaker-affiliation {
  font-size: 1rem;
  color: #000000;
}

.speakers-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}


.workshop-structure {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #212121;
  text-align: left;
}

.structure-title {
  font-size: 32px;
  font-weight: bold;
  color: #1f2b3e;
  text-decoration: underline;
  margin-bottom: 10px;
  text-align: center; /* Keep title centered */
}

.structure-intro {
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #444;
  text-align: left;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.structure-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.structure-card:hover {
  transform: translateY(-5px);
}

.structure-heading {
  font-size: 18px;
  color: #941236;
  font-weight: bold;
  margin-bottom: 12px;
}

.structure-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}



/*
main {
    margin-top: 70px; 
    padding: 20px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("./images/iisc.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.content {
    max-width: 800px;
    margin: 0 auto;
}

.content h1 {
    color: #941236;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content p {
    color: #fff2cc;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.content h3 {
    color: #ff7f00;
    font-size: 1.5rem;
}
*/
main {
    margin-top: 70px; /* Adjust space for fixed navbar */
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* Place the video behind the content and overlay */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Transparent gray mask */
    z-index: -1; /* Place the overlay between the video and content */
}

.content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* Keep the content above the video and overlay */
}

.content h1 {
    color: #f6eaaf;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content p {
    color: #EAD3C1;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.content h3 {
    color: #f6eaaf;
    font-size: 1.5rem;
}


/* Responsive design */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        width: 100%;
    }

    .dropdown-menu a {
        padding: 15px;
    }

    .menu-toggle:checked ~ .nav-links {
        transform: translateY(0);
    }

    .hamburger-menu .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger-menu .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}


        #workshop-description {
            background: #ffffff; /* Set background color of the section to white */
            padding: 3rem 0 1rem 0;
        }

        .workshop-details {
            display: flex;
            flex-wrap: wrap;
            justify-content: center; /* Center-align all elements */
            padding: 0 20px; /* Add padding to the sides to ensure space between elements */
        }

        .workshop-content {
            width: calc(33.33% - 20px); /* Set the width to one-third of the container width with margin */
            margin-bottom: 30px; /* Add margin at the bottom of each element */
            margin-right: 20px; /* Add margin between the elements */
            box-sizing: border-box; /* Include padding and border in the element's total width and height */
            background: #f6eaaf; /* Set background color of the content block to very light yellow */
            border-radius: 1rem; /* Add border radius for rounded corners */
            padding: 1.5rem; /* Add padding to the elements */
            transition: box-shadow 0.3s; /* Add transition for box-shadow */
        }

        .workshop-content:nth-child(3n) {
            margin-right: 0; /* Remove the right margin for every third element to prevent wrapping */
        }

        .workshop-content h4 {
            color: #941236; /* Set heading color */
            margin-bottom: 1rem; /* Add margin-bottom to the heading */
            text-align: center; /* Center-align heading */
        }

        .workshop-content p {
            color: #000000; /* Set paragraph color */
            text-align: justify; /* Justify paragraph text */
            margin-bottom: 0; /* Remove default margin-bottom */
        }

        .workshop-content:hover {
            box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2); /* Add box-shadow on hover */
        }

        /* Set responsive layout for smaller screens */
        @media only screen and (max-width: 575px) {
            .workshop-content {
                width: calc(100% - 20px); /* Set the width to full container width for mobile screens */
                margin-right: 0; /* Remove margin on small screens */
            }
        }

        /* Set responsive layout for medium screens */
        @media only screen and (min-width: 576px) and (max-width: 991px) {
            .workshop-content {
                width: calc(50% - 20px); /* Set the width to half of the container width with margin for medium screens */
            }
        }

        /* Set responsive layout for large screens */
        @media only screen and (min-width: 992px) {
            .workshop-content {
                width: calc(33.33% - 20px); /* Set the width to one-third of the container width with margin for large screens */
            }
        }

/* ----  SECTION [COURSE]   ---- */
.course {
    background: #ffffff; /* Set background color of the course section to white */
    padding: 3rem 0 1rem 0;
}

.courses {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center-align all elements */
    padding: 0 20px; /* Add padding to the sides to ensure space between elements */
}

.course-details {
    width: calc(33% - 20px); /* Set the width to half of the container width with margin */
    margin-bottom: 30px; /* Add margin at the bottom of each element */
    margin-right: 20px; /* Add margin between the elements */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    background: #ffffcc; /* Set background color of the course details to very light yellow */
    border-radius: 1rem; /* Add border radius for rounded corners */
    padding: 1.5rem; /* Add padding to the elements */
    transition: box-shadow 0.3s; /* Add transition for box-shadow */
}

.course-details:nth-child(2n) {
    margin-right: 0; /* Remove the right margin for every even-indexed element to prevent wrapping */
}

.course-details h3 {
    color: #333333; /* Set heading color */
    margin-bottom: 1rem; /* Add margin-bottom to the heading */
}

.course-details p {
    color: #666666; /* Set paragraph color */
    margin-bottom: 0; /* Remove default margin-bottom */
}

/* Set responsive layout for smaller screens */
@media only screen and (max-width: 575px) {
    .course-details {
        width: calc(100% - 20px); /* Set the width to full container width for mobile screens */
        margin-right: 0; /* Remove margin on small screens */
    }
}

/* Set responsive layout for medium screens */
@media only screen and (min-width: 576px) and (max-width: 991px) {
    .course-details {
        width: calc(50% - 20px); /* Set the width to half of the container width with margin for medium screens */
    }
}

/* Set responsive layout for large screens */
@media only screen and (min-width: 992px) {
    .course-details {
        width: calc(33.33% - 20px); /* Set the width to one-third of the container width with margin for large screens */
    }
}

.course-details:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2); /* Add box-shadow on hover */
}







.course1 {
    background: #ffffff; /* Set background color of the course section to white */
    padding: 3rem 0 1rem 0;
}

.courses1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.course-details1 {
    width: calc(16.66% - 20px); /* Set the width to one-fifth of the container width */
    margin-bottom: 20px; /* Add margin at the bottom of each element */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    background: #f6eaaf; /* Set background color of the course details to very very light blue */
    border-radius: 1rem; /* Add border radius for rounded corners */
    padding: 1.5rem; /* Add padding to the elements */
    transition: box-shadow 0.3s; /* Add transition for box-shadow */
}

.course-details1:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2); /* Add box-shadow on hover */
}

.course-details1 h3 {
    color: #941236; /* Set heading color */
    margin-bottom: 1rem; /* Add margin-bottom to the heading */
    font-size: 1.2rem; /* Decrease font size */
}

.course-details1 p {
    color: #000000; /* Set paragraph color */
    margin-bottom: 0; /* Remove default margin-bottom */
}

.course-details1 img {
    display: block;
    margin: 0 auto 1rem; /* Add margin below the image */
    width: 80%; /* Set a fixed width for the image */
    height: auto; /* Maintain aspect ratio of the image */
    max-height: 350px; /* Set maximum height for the image */
    border-radius: 50%; /* Add border radius for rounded corners */
}

.course-details1 h3 a {
    text-decoration: none;
    color: inherit; /* This keeps the color of the link consistent with the surrounding text */
}


.course-details1 h3 a:hover {
    text-decoration: underline; /* Optional: Adds underline on hover for better accessibility */
    color: #007bff; /* Optional: Changes color on hover to indicate it's clickable */
}

/* Adjustments for responsiveness */
@media only screen and (max-width: 1200px) {
    .course-details1 {
         width: calc(33.33% - 20px); /* Set the width to one-third of the container width for high-resolution screens */
    }
}

@media only screen and (max-width: 768px) {
    .course-details1 {
        width: calc(50% - 20px); /* Set the width to half of the container width for mid-resolution screens */
    }
}

@media only screen and (max-width: 576px) {
    .course-details1 {
       width: calc(100% - 20px); /* Set the width to full container width for mobile screens */
       margin-right: 0; /* Remove margin on small screens */
    }
}

.course2 {
    background: #ffffff; /* Set background color of the course section to white */
    padding: 3rem 0 1rem 0;
}

.courses2 {
    display: flex;
    justify-content: center; /* Center items */
    flex-wrap: wrap;
    padding: 0 20px;
}

.course-details2 {
    width: calc(16.66% - 20px); /* Set the width to one-fifth of the container width */
    margin: 10px; /* Add margin to center the tiles properly */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    background: #FFF5F6; /* Set background color of the course details to very very light blue */
    border-radius: 1rem; /* Add border radius for rounded corners */
    padding: 1.5rem; /* Add padding to the elements */
    transition: box-shadow 0.3s; /* Add transition for box-shadow */
}

.course-details2:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2); /* Add box-shadow on hover */
}

.course-details2 h3 {
    color: #941326; /* Set heading color */
    margin-bottom: 1rem; /* Add margin-bottom to the heading */
	font-size: 1rem; /* Decrease font size */
}

.course-details2 p {
    color: #666666; /* Set paragraph color */
    margin-bottom: 0; /* Remove default margin-bottom */
}

.course-details2 img {
    display: block;
    margin: 0 auto 1rem; /* Add margin below the image */
    width: 80%; /* Set a fixed width for the image */
    height: auto; /* Maintain aspect ratio of the image */
    max-height: 300px; /* Set maximum height for the image */
    border-radius: 50%; /* Add border radius for rounded corners */
}

.course-details2 h3 a {
    text-decoration: none;
    color: inherit; /* Keeps the link color consistent with surrounding text */
}

.course-details2 h3 a:hover {
    text-decoration: underline; /* Optional: Adds underline on hover */
    color: #007bff; /* Optional: Changes color on hover */
}

/* Adjustments for responsiveness */
@media only screen and (max-width: 1200px) {
    .course-details2 {
         width: calc(33.33% - 20px); /* Set the width to one-third of the container width for high-resolution screens */
    }
}

@media only screen and (max-width: 768px) {
    .course-details2 {
        width: calc(50% - 20px); /* Set the width to half of the container width for mid-resolution screens */
    }
}

@media only screen and (max-width: 576px) {
    .course-details2 {
       width: calc(100% - 20px); /* Set the width to full container width for mobile screens */
    }
}

.course3 {
    background: #ffffff; /* Set background color of the course section to white */
    padding: 3rem 0 1rem 0;
}

.courses3 {
    display: flex;
    justify-content: center; /* Center items */
    flex-wrap: wrap;
    padding: 0 20px;
}

.course-details3 {
    width: calc(33.33% - 20px); /* Adjust width as needed */
    margin: 10px; /* Add margin to center the tiles properly */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    background: #fff0ff; /* Set background color of the course details to very very light blue */
    border-radius: 1rem; /* Add border radius for rounded corners */
    padding: 1.5rem; /* Add padding to the elements */
    transition: box-shadow 0.3s; /* Add transition for box-shadow */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
}

.course-details3:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2); /* Add box-shadow on hover */
}

.course-details3 h3 {
    color: #941236; /* Set heading color */
    margin-bottom: 1rem; /* Add margin-bottom to the heading */
}

.course-details3 p {
    color: #666666; /* Set paragraph color */
    margin-bottom: 1rem; /* Add some margin-bottom */
    text-align: center; /* Center align the text */
}

.course-details3 .read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    color: #ffffff;
    background-color: #941236; /* Button color */
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.course-details3 .read-more:hover {
    background-color: #bd8185; /* Darker button color on hover */
}

/* Adjustments for responsiveness */
@media only screen and (max-width: 1200px) {
    .course-details3 {
        width: calc(45% - 20px); /* Set the width to nearly half of the container width for high-resolution screens */
    }
}

@media only screen and (max-width: 768px) {
    .course-details3 {
        width: calc(100% - 20px); /* Set the width to full container width for mobile screens */
    }
}

/* Ensure odd number of tiles are centered */
.courses3::after {
    content: "";
    flex: auto;
}

.committee {
  background-color: #ffffff;
}

.committee {
    
    background: #ffffff; /* Set background color of the committee section to white */
    padding: 0rem 0 0rem 0; 
}

.committee .heading {
    text-align: center; /* Center align the heading and paragraph */
}

.committee .heading h2 {
    color: #333333; /* Set heading color */
    margin-bottom: 1rem; /* Add margin-bottom to the heading */
}

.committee .heading p {
    color: #666666; /* Set paragraph color */
    margin-bottom: 2rem; /* Add margin-bottom to the paragraph */
}

.committee-details {
    width: calc(50% - 20px); /* Set the width to half of the container width */
    margin-bottom: 20px; /* Add margin at the bottom of each element */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    background: #FFFFFF; /* Set background color of the committee details to very very light blue */
    border-radius: 1rem; /* Add border radius for rounded corners */
    padding: 1.5rem; /* Add padding to the elements */
    transition: box-shadow 0.3s; /* Add transition for box-shadow */
}

.committee-details:nth-child(odd) {
    margin-right: 20px; /* Add margin between the elements */
}

.committee .committee-members {
    display: flex;
    flex-wrap: wrap; /* Allow elements to wrap to the next line */
    justify-content: center; /* Center align committee members */
    padding: 0 10px; /* Add padding to the sides to ensure space between elements */
}

.committee-details:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2); /* Add box-shadow on hover */
}

.committee-details h3 {
    color: #333333; /* Set heading color */
    margin-bottom: 1rem; /* Add margin-bottom to the heading */
}

.committee-details p {
    color: #666666; /* Set paragraph color */
    margin-bottom: 0; /* Remove default margin-bottom */
}

.committee-details img {
    display: block;
    margin: 0 auto 1rem; /* Add margin below the image */
    width: 80px; /* Set the width of the image */
    height: 80px; /* Set the height of the image */
    border-radius: 50%; /* Add border radius for rounded corners */
}

@media only screen and (max-width: 768px) {
    .committee-details {
        width: calc(50% - 20px); /* Set the width to half of the container width for mid-resolution screens */
    }
}

@media only screen and (max-width: 576px) {
    .committee-details {
        width: calc(100% - 20px); /* Set the width to full container width for mobile screens */
        margin-right: 0; /* Remove margin on small screens */
    }
}

@media only screen and (min-width: 1200px) {
    .committee-details {
        width: calc(33.33% - 20px); /* Set the width to one-third of the container width for high-resolution screens */
    }
}


/* ---  SECTION [CAMPUS]    --- */

.campus{
    background: #fff;
    padding: 5rem 0 3rem 0;
}

.all-campus{
    display: flex;
    justify-content: space-between;
    text-align: center;
    width: 80%;
    margin: auto;
    margin-top: 5rem;
}

.campus-details{
    flex-basis: 31%;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
}

.campus-details img{
    width: 100%;
    height: 350px;
    object-fit: fill;
    display: block;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover{
    background: rgba(226, 0, 0, 0.7);
}

.layer h3{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    opacity: 0;
    transition: 1s;
}

.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}


/* ----    SECTION  FACILITIES    ---- */
.facilities{
    background: #fff;
    padding: 2rem 0;
    padding-top: 7rem;
}

.all-facilities{
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 2rem;
    margin-top: 3rem;
}

.facility{
    flex-basis: 31%;
}

.facility img{
    width: 80%;
    border-radius: 2rem;
}
/* SECTION SPONSORS */
.Sponsors {
    background-color: #FFFFFF;
    padding: 20px; /* Add padding for better spacing */
    text-align: center; /* Center the content inside the Sponsors section */
}

.heading {
    text-align: center;
}

.heading h2 {
    margin-bottom: 10px;
    color: #333;
    font-size: 2em; /* Adjust font size for headings */
}

.heading p {
    color: #666;
    font-size: 1.2em; /* Adjust font size for paragraph */
}

/* Default styling */
.sponsor-logos {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of items */
    justify-content: center; /* Center the logos horizontally */
    align-items: center; /* Vertically center the logos */
    margin: 20px 0; /* Add spacing around the section */
    gap: 20px; /* Consistent gap between items */
}

.sponsor-logo {
    flex: 0 1 auto; /* Prevent shrinking too much */
    max-width: 150px; /* Set maximum width for the logo container */
    margin: 10px; /* Add margin for spacing */
    text-align: center; /* Center the content inside each sponsor-logo */
}

.sponsor-logo img {
    width: 100%; /* Make the image fill the container */
    height: auto; /* Maintain aspect ratio */
    max-height: 100px; /* Set a consistent maximum height */
}

/* Adjustments for medium screens */
@media (max-width: 992px) {
    .sponsor-logo {
        max-width: 120px; /* Slightly smaller for medium-sized screens */
    }

    .sponsor-logo img {
        max-height: 80px; /* Reduce image height */
    }
}

/* Adjustments for small screens */
@media (max-width: 768px) {
    .sponsor-logo {
        max-width: 100px; /* Further reduce max width */
    }

    .sponsor-logo img {
        max-height: 70px; /* Further reduce max height */
    }
}

/* Adjustments for extra small screens (mobile) */
@media (max-width: 576px) {
    .sponsor-logo {
        max-width: 80px; /* Smaller width for mobile */
    }

    .sponsor-logo img {
        max-height: 60px; /* Smaller height for mobile */
    }
}

/* Styling for underlined headings */
.heading h2 {
    margin-bottom: 10px;
    color: #333;
    text-decoration: underline;
}

/* Styling for visible line between sections */
.section-divider {
	background-color: #f9f9f9;
    margin:0;
}


.workshop-structure {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 0rem;
    text-align: left;
}

.workshop-structure .content {
    max-width: 1600px;
    margin: auto;
    text-align: left;
}

.workshop-structure h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.details.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.column {
    flex: 1 1 350px; /* Flexibility with a minimum width of 250px */
    padding: 20px;
    margin-bottom: 1rem;
    background: #f9f9f9; /* Light background color for the column */
    border: 1px solid #ddd; /* Subtle border for each column */
    border-radius: 8px; /* Rounded corners for aesthetics */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Soft shadow for depth */
    text-align: center; /* Justifies text to align both left and right sides */
}

.workshop-structure h3 {
    font-size: 1.6rem;
    color: #941326;
    margin-bottom: 0.5rem;
    text-align: center; /* Ensures the title is aligned left */
}

.workshop-structure p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
    text-align: justify; /* Justifies the paragraph text */
}


.workshop-structure1 {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 0rem;
    text-align: left;
}

.workshop-structure1 .content {
    max-width: 1600px;
    margin: auto;
    text-align: left;
}

.workshop-structure1 h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.details.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.column {
    flex: 1 1 350px; /* Flexibility with a minimum width of 250px */
    padding: 20px;
    margin-bottom: 1rem;
    background: #f9f9f9; /* Light background color for the column */
    border: 1px solid #ddd; /* Subtle border for each column */
    border-radius: 8px; /* Rounded corners for aesthetics */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Soft shadow for depth */
    text-align: center; /* Justifies text to align both left and right sides */
}

.workshop-structure1 h3 {
    font-size: 1.6rem;
    color: #007bff;
    margin-bottom: 0.5rem;
    text-align: center; /* Ensures the title is aligned left */
}

.workshop-structure1 p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
    text-align: justify; /* Justifies the paragraph text */
}


/*******************************************/
/* General Styling */
#schedule {
    padding: 20px;
    background-color: #FFFFFF;
    box-sizing: border-box; /* Ensure padding is included in width/height */
}

/* Navigation Styling */
.navigation-container {
    margin: 30px auto;
    text-align: center;
}

.navigation {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center the buttons */
    list-style: none;
    padding: 10px;
    gap: 20px; /* Uniform spacing between items */
    max-width: 100%; /* Prevent horizontal scrolling */
}

.navigation li {
    margin: 10px 0; /* Add vertical spacing between rows */
}

/* Navigation Buttons */
.navigation a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #bd8185;
    background-color: #ffffff;
    padding: 10px 20px;
    border: 2px solid #bd8185;
    border-radius: 8px;
    min-width: 80px; /* Ensure consistent width */
    text-align: center; /* Center the text */
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

.navigation a:hover {
    background-color: #941326;
    color: #ffffff;
    transform: scale(1.05); /* Add scaling on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.navigation a:active {
    transform: scale(0.95); /* Slight shrink on click */
}

/* Spacing and Wrapping Fixes for Smaller Screens */
@media (max-width: 768px) {
    .navigation {
        gap: 15px 10px; /* Adjust gap for smaller screens */
    }

    .navigation a {
        width: calc(30% - 15px); /* Allow 3 buttons per row */
        font-size: 0.9rem; /* Slightly smaller font */
        padding: 8px 16px; /* Adjust padding */
    }
}

@media (max-width: 480px) {
    .navigation {
        gap: 10px; /* Adjust gap for very small screens */
    }

    .navigation li {
        margin: 8px 0; /* Further adjust vertical spacing */
    }

    .navigation a {
        width: calc(45% - 10px); /* Allow 2 buttons per row */
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* Day Content */
.day-content1 {
    display: none;
    margin: 20px auto;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Fit content within screen width */
    text-align: center;
    box-sizing: border-box; /* Include padding in width/height */
}

.day-content1 h3 {
    color: #941326;
    font-size: 1.5rem; /* Adjust font size for smaller screens */
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* Show Only the Target Content */
#day1:target,
#day2:target,
#day3:target,
#day4:target,
#day5:target,
#day6:target,
#day7:target,
#day8:target,
#day9:target,
#day10:target,
#day11:target,
#day12:target,
#day13:target {
    display: block;
}

/* Schedule Table Styling */

.schedule-container {
    overflow-x: auto; /* Add horizontal scrolling for mobile screens */
    margin-top: 20px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.schedule-table th, .schedule-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.schedule-table th {
    background-color: #f6eaaf;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
}

.schedule-table tr {
    color: black;
    text-transform: uppercase;
}
.schedule-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.schedule-table tbody tr:hover {
    background-color: #e6f7ff;
}

/* Ensure Responsive Tables on Smaller Screens */
@media (max-width: 768px) {
    .schedule-container {
        margin: 10px 0; /* Add spacing */
    }

    .schedule-table {
        font-size: 0.85rem; /* Adjust font size for readability */
    }

    .schedule-table th, .schedule-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .schedule-table {
        font-size: 0.8rem;
    }

    .schedule-table th, .schedule-table td {
        padding: 6px;
    }
}


/*******************************************/



/* Base styles for all screen sizes */
.Speakers {
    font-family: Arial, sans-serif;
    padding: 0;
    background-color: #FFFFFF;
}

.Speakers #Speakers {
    width: 100%;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

.Speakers .content {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    margin: auto;
    box-sizing: border-box;
}

.Speakers .heading {
    text-align: center;
    margin-bottom: 20px;
}

.Speakers .heading h2 {
    font-size: 2.5em;
    color: #333;
    text-decoration: underline;
}

.Speakers p {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

.Speakers .speaker-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.Speakers .speaker-card {
    background-color: #FFF5F6;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: calc(25% - 20px); /* Four items per row */
    box-sizing: border-box;
}

.Speakers .speaker-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.Speakers .speaker-institute {
    font-size: 1em;
    color: #777;
}

.speaker-card .speaker-name a {
    text-decoration: none;
    color: inherit; /* Keeps the link color consistent with surrounding text */
}

.speaker-card .speaker-name a:hover {
    text-decoration: underline; /* Adds underline on hover */
    color: #007bff; /* Optional: Changes color on hover */
}

/* Responsive styles */
@media (max-width: 1600px) {
    .Speakers .content {
        padding: 15px;
    }

    .Speakers .heading h2 {
        font-size: 2.2em;
    }

    .Speakers p {
        font-size: 1.1em;
    }
}

@media (max-width: 1200px) {
    .Speakers .heading h2 {
        font-size: 2em;
    }

    .Speakers p {
        font-size: 1em;
    }

    .Speakers .speaker-card {
        width: calc(33.33% - 20px); /* Three items per row */
    }
}

@media (max-width: 992px) {
    .Speakers .heading h2 {
        font-size: 1.8em;
    }

    .Speakers p {
        font-size: 0.9em;
    }

    .Speakers .speaker-card {
        width: calc(50% - 20px); /* Two items per row */
    }
}

@media (max-width: 768px) {
    .Speakers .heading h2 {
        font-size: 1.6em;
    }

    .Speakers p {
        font-size: 0.8em;
    }

    .Speakers .speaker-card {
        width: calc(50% - 20px); /* Two items per row */
    }
}

@media (max-width: 600px) {
    .Speakers .heading h2 {
        font-size: 1.4em;
    }

    .Speakers p {
        font-size: 0.7em;
    }

    .Speakers .speaker-card {
        width: calc(100% - 20px); /* Single column layout */
    }
}

@media (max-width: 468px) {
    .Speakers .heading h2 {
        font-size: 1.2em;
    }

    .Speakers p {
        font-size: 0.6em;
    }

    .Speakers .speaker-card {
        padding: 10px;
    }

    .Speakers .speaker-name {
        font-size: 1em;
    }

    .Speakers .speaker-institute {
        font-size: 0.9em;
    }
}

.Travel-Housing {
    background-color: #ffffff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 10px;
}

.Travel-Housing .content {
    max-width: 1200px;
    margin: auto;
}

.Travel-Housing .heading {
    text-align: center;
    margin-bottom: 30px;
}


.Travel-Housing .heading p {
    font-size: 1.3em;
    color: #666;
    margin-top: 10px;
}

.Travel-Housing .travel-info, .Travel-Housing .housing-info {
    margin-bottom: 40px;
}

.Travel-Housing .travel-grid, .Travel-Housing .housing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.Travel-Housing .travel-method, .Travel-Housing .housing-details {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.Travel-Housing h3 {
    font-size: 2em;
    color: #0066cc;
    margin-bottom: 15px;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 5px;
}

.Travel-Housing h4 {
    font-size: 1.5em;
    color: #444;
    margin-bottom: 10px;
}

.Travel-Housing p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.Travel-Housing ul {
    margin-left: 20px;
    list-style-type: disc;
}

.Travel-Housing ul li {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .Travel-Housing .travel-grid, .Travel-Housing .housing-grid {
        grid-template-columns: 1fr;
    }

    .Travel-Housing .heading h2 {
        font-size: 2.5em;
    }

    .Travel-Housing .heading p {
        font-size: 1.2em;
    }

    .Travel-Housing h3 {
        font-size: 1.8em;
    }

    .Travel-Housing h4 {
        font-size: 1.4em;
    }

    .Travel-Housing p, .Travel-Housing ul li {
        font-size: 1.1em;
    }
}

@media (max-width: 576px) {
    .Travel-Housing {
        padding: 30px 10px;
    }

    .Travel-Housing .heading h2 {
        font-size: 2.2em;
    }

    .Travel-Housing .heading p {
        font-size: 1.1em;
    }

    .Travel-Housing h3 {
        font-size: 1.6em;
    }

    .Travel-Housing h4 {
        font-size: 1.3em;
    }

    .Travel-Housing p, .Travel-Housing ul li {
        font-size: 1em;
    }
}
/* SECTION [CALL-TO-ACTION] */
/*
.call-to-action{
    background: #FFFFFF;
}







.items{
    background: linear-gradient( rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('./images/banner2.jpg');
    background-size: cover;
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.items h3{
    color: #fff;
    width: 60%;
}
*/
.registration-section {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 10px;
    text-align: left; /* Aligns text centrally */
}

.registration-section .content {
    max-width: 800px;
    margin: auto;
    color: #333;
    text-align: left; /* Aligns text to the left within the central column */
}

.registration-section h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.registration-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.registration-section .details p {
    text-align: left; /* Ensures detail paragraphs are aligned to the left */
    margin-bottom: 0.5rem;
}

.registration-section .button-container {
    text-align: center; /* Centers the registration button */
    margin-top: 2rem;
}

.registration-section .btn {
    padding: 0.8rem 1.5rem;
    background-color: #941236;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.registration-section .btn:hover {
    background-color: #ead3c1;
}


        .tourist-preview, .tourist-attractions {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: #fff;            
            border-radius: 10px;
            text-align: center;
        }

        .tourist-preview h2, .tourist-attractions h2 {
            color: #2c3e50;
            font-size: 2rem;
        }

        .tourist-preview p, .tourist-attractions p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
            text-align: justify;
        }

        .btn {
            background-color: #941236;
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #BD8185;
        }

        @media (max-width: 768px) {
            .tourist-preview h2, .tourist-attractions h2 {
                font-size: 1.5rem; /* Smaller font size for mobile screens */
            }

            .btn {
                padding: 8px 16px; /* Smaller button on mobile */
            }
        }
/* FOOTER */

.footer {
    background-color: #FFFFFF; /* Black background color */
    color: #fff; /* White text color */
    padding: 20px; /* Add padding for spacing */
}

.heading{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading p{
    width: 70%;
    margin: 1rem;
}

.footer{
    padding-top: 1rem;
    text-align: center;
}






@media(max-width: 676px){
    
    /* Essentials */

    h1{
        font-size: 2rem;
        margin: 2rem;
    }

    h2{
        font-size: 1.7rem;
    }

    h3{
        font-size: 1.2rem;
    }

    p
     {
        font-size: .8rem;
     } 

   /* NAVBAR */
    
    .navbar{
        padding: 0rem 2rem; 
        margin: 0;
    }
    
    .nav-links ul li{
        display: block;
    }
    
    .nav-links{
        top: 0;
        left: -60%;
        height: 105%;
        background:#f44336;
        width: 60%;
        position: absolute;
        z-index: 2;
        text-align: left;
        padding: 1rem;
        transition: .5s linear;
        transform: translateY(-5%);
        overflow: hidden;
    }

    .show-navbar{
        left: 0;
    }
    
    nav .fa{
        color: #fff;
        font-size: 25px;
        cursor: pointer;
        float: right;
        transition: .5s;
    }
    
    nav .fa:hover{
        transform: rotate(360deg);
    }
    
    .nav-links ul{
        margin-top: .7rem;
        padding: 2rem 1rem;
    }
    
    .nav-links ul li a{
        line-height: 2rem;
        font-size: 20px;
    }

    .nav-links li a::after{
        background: #fff;
    }  
    /* MAIN SECTION */
    
    
    
    main p{
        width: 100%;
        margin: .7rem 0;
    }
    
    
    /* SECTION [COURSE] */
    
    section .courses{
        display: flex;
        flex-direction: column;
        margin: 2rem;
    }
    
    .course-details{
        margin: 1rem 1rem;
        padding: 2rem 0;
    }
    
    
    /* SECTION [CAMPUS] */
    
    .all-campus{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    
    .campus-details{
        width: 70%;
        margin: 2rem;
    }
    
    .campus-details img{
        opacity: .7;
    }
    
    .layer h3{
        bottom: 49%;
        opacity: 1;
        color: black;
        font-weight: bold;
    }

    /* ----  SECTION FACILITIES   ---- */
	
	

    .all-facilities{
        display: flex;
        flex-direction: column;
    }

    .facility{
        margin: 2rem 0;
    }

    .facility img{
        width: 70%;
        margin: 2rem 0;
    }


    /* SECTION [TESTIMONIALS] */

    .rating{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .rating img{
        width: 40%;
    }

    .rating p{
        text-align: center;
        margin: 1rem 0;
        width: 100%;
    }

    .rating h4{
        text-align: center;
        margin: 1rem 0;
    }


    /* SECTION [CALL-TO-ACTION] */

    .items{
        border-radius: 1rem;
    }

    .items h3{
        width: 95%;
    }
	

    /* FOOTER */
.footer {
    background-color: #222; /* Dark background color */
    color: #fff; /* White text color */
    padding: 40px 20px; /* Padding for spacing */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-heading,
.contact-info {
    flex: 1;
    margin-right: 20px;
}


.contact-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info p {
    margin: 5px 0;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}


    .heading p{
        width: 100%;
    }
}

@media screen and (min-width: 677px) {
    .showMenu{
        display: none;
    }

    #hideMenu{
        display: none;
    }
  }
  
