/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */


/* Ensure sections and their content are transparent or have minimal backgrounds */
section {
    background-color: transparent; /* or use rgba(0,0,0,0) for transparent */
    position: relative; /* Ensure sections maintain their positioning */
    z-index: 1; /* Place sections above the background */
    opacity: 0.9;
}



/* Header styles */
header {
    background-color: #1d1c1c;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.9;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #f0f0f0;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fffbfb;
}

/* Hero Section styles */
section#home {
    text-align: center;
    padding: 50px 0;
    background-color: #111;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Services Section styles */
section#services {
    padding: 50px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif; /* Change to your preferred font */
}

h2 {
    font-size: 32px; /* Increase the font size */
    margin-bottom: 20px;
    font-weight: bold; /* Add bold font weight */
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 15px 0; /* Increase the margin for better spacing */
    font-size: 20px; /* Adjust the font size */
    font-weight: 500; /* Adjust the font weight */
}

/* How It Works Section styles */
section#how-it-works {
    padding: 50px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif; /* Change to your preferred font */
}

ol {
    list-style: none;
    counter-reset: item;
}

ol li {
    margin: 15px 0; /* Increase the margin for better spacing */
    font-size: 20px; /* Adjust the font size */
    font-weight: 500; /* Adjust the font weight */
    position: relative;
    line-height: 1.6; /* Improve line height for readability */
}

ol li::before {
    content: counter(item);
    counter-increment: item;
    color: #ff9800;
    font-weight: bold;
    display: inline-block;
    width: 1.2em;
    margin-right: 0.5em;
    position: absolute;
    left: -2em;
    top: 0;
    font-size: 24px; /* Increase the counter font size */
}



/* Hero Section styles */
section.hero-section {
    text-align: center;
    padding: 100px 0;
    position: relative;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Services Section styles */
section.services-section {
    padding: 100px 20px;
    background-color: #111;
    color: #fff;
    background-blend-mode: overlay;
}

/* How It Works Section styles */
section.how-it-works-section {
    padding: 100px 20px;
    background-color: #222;
    color: #fff;
    background-blend-mode: overlay;
}

/* Geometric accent - Example */
.geometric-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('geometric-accent.svg') top left/cover no-repeat;
    pointer-events: none;
    z-index: -1;
}


/* Uploads by University Section styles */
section.uploads-by-university-section {
    padding: 80px 20px;
    background-color: #2d2d2d;
    color: #fff;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
}

.uploads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.uploads-grid p {
    width: 200px; /* Set a fixed width for the upload elements */
    height: 100px; /* Define a height to maintain consistency */
    padding: 15px;
    background-color: #444;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    font-size: 16px;
}


.uploads-grid p:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


/* Footer styles */
footer {
    background-color: #181717;
    color: #fff;
    padding: 20px;
    text-align: center;
    opacity: 0.9;
}

/* Social Media Links styles */
.social-media {
    margin-bottom: 20px;
}

/* Apply color to individual icons on hover */
.social-media a .fab.fa-instagram {
    color: #e4405f; /* Change to pink on hover for Instagram */
}

.social-media a .fab.fa-whatsapp {
    color: #25d366; /* Change to green on hover for WhatsApp */
}

.social-media a .fas.fa-phone-alt {
    color: #0d1aca; /* Change to white on hover for Call */
}

/* Privacy and Policy styles */
.privacy-policy {
    font-size: 14px;
    margin-top: 10px; /* Add margin between icons and text */
}

/* Apply color to privacy icons on hover */
.privacy-policy a {
    color: #bada55; /* Change text color on hover for Privacy Policy and Terms of Service */
}


/* About Us Section styles */
section.about-section {
    padding: 80px 20px;
    background-color:#111; /* Change to your preferred background color */
    color: #ece2e2;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: bold;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}



/* Privacy Policy and Terms of Service Section styles */
section.policy-section,
section.terms-section {
    padding: 80px 20px;
    text-align: center;
}

.policy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

.policy-content h2,
.terms-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ccc;
}

.policy-content p,
.terms-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

/* Adjust margins and font sizes as needed */

/* Form Section styles */
section.upload-form {
    padding: 80px 20px;
    background-color: #111;
    color: #f5f1f1;
    text-align: center;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="date"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: transparent;
    color: #ffffff;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload label {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.selected-file {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
}

button[type="submit"] {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #f57c00;
}
.upload-label {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
}

.upload-label i {
    margin-right: 10px;
    font-size: 24px;
}
/* Styling for the burger navigation icon */
.burger-icon {
    display: none; /* Initially hide on larger screens */
    
  }
  
  /* Apply to Become a Tutor aside styles */
  .apply-tutor {
    position: fixed;
    top: 0;
    right: -300px; /* Initially hidden */
    height: 100vh;
    width: 300px;
    background-color: #131313b9;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
  }
  
  .actions-list {
    list-style: none;
    padding: 0;
  }
  
  .actions-list li {
    margin-bottom: 10px;
  }
  
  .actions-list li a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .actions-list li a:hover {
    background-color: #f0f0f05e;
  }
  
  
  .dark-background {
    background-color: #333; /* Set the background color to dark */
    color: #fff; /* Set the text color to white */
}
@media (max-width: 768px) {

  
    .burger-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 999;
        
    }
  
    .navigation2 {
        display: none; /* Hide regular navigation on smaller screens */
    }
  
    .apply-tutor {
        right: -300px; /* Initially hidden */
    }
  
    .navigation.active {
        display: block; /* Show navigation when active */
    }
  
    .apply-tutor.active {
        right: 0;
    }
  }
  
  
  /* For mobile screens */
@media (max-width: 768px) {
    .uploads-grid {
        grid-template-columns: repeat(3, minmax(100px, 1fr)); /* 3x3 grid for smaller screens */
        gap: 10px; /* Adjust gap as needed */
    }

    .uploads-grid p {
        width: 100%; /* Take full width of the grid cell */
        /* Other styles for consistency */
    }
}
aside.active {
    z-index: 10; /* Adjust value as needed */
  }
  
  .burger-icon{
    z-index: 10;
    
  }