body.light-background {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #852f2f; /* Light maroon background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.center-border {
    border: 5px solid maroon;
    border-radius: 15px;
    padding: 20px;
    background-color: #1b1919; /* White background for the content area */
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
  }
  video {
    width: 100%;
    max-width: 8000;
    border-radius: 10px;
  }

.header-image {
    width: 100%;
    height: auto;
    border-bottom: 3px solid maroon;
}

.main-heading {
    color: darkred;
    text-align: center;
    margin: 20px 0;
}


.navigation {
    background: maroon;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

.navigation a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
}

.navigation a:hover {
    text-decoration: underline;
}

.section-heading {
    color: darkred;
    text-align: center;
    margin: 20px 0;
}


.description {
    text-align: justify;
    color: #ffffff;
    margin: 10px 20px;
}

.profile-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.profile-card {
    border: 2px solid maroon;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    background: #fff;
    max-width: 300px;
}

.profile-image {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.profile-name {
    color: #8b0000;
    margin-top: 10px;
}

.footer-text {
    background: maroon;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 1.5rem;
    }

    .navigation a {
        font-size: 0.9rem;
        margin: 0 10px;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.9rem;
    }
}

/* Center Align and Dark Text */
.centered {
    text-align: justify;
}
.dark-text {
    color: #333; /* Darker text color for better contrast */
    background-color: #f0f0f0; /* Light background for emphasis */
    padding: 15px;
    border-radius: 8px;
    margin: 10px auto;
    max-width: 920px; /* Ensures readability on larger screens */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for better focus */
    font-size: 1.1rem; /* Slightly larger text for emphasis */
    line-height: 1.8; /* Improves readability */
}
.profile-class {
    width: 100%;
    height: auto;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
  }
  
  .custom-dropdown-btn {
    background-color: maroon;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .custom-dropdown-btn:hover {
    background-color: maroon;
  }
    .custom-dropdown-content {
    display: none; 
    position: absolute;
    background-color: #f9f9f9;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    box-sizing: justify;
    z-index: 10;
    border-radius: 8px;
  }
  .custom-dropdown-content a {
     text-align: justify;
    color: black;
    padding: 4px 18px;
    text-decoration: none;
    display: block;
    border-radius: 4px;
  }
  
  .custom-dropdown-content a:hover {
    background-color: maroon;
  }
  
  .custom-dropdown:hover .custom-dropdown-content {
    display: block;
  }
  
  .footer-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
}
.footer-button {
    background-color: maroon;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.footer-button:hover {
    background-color: maroon;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 600px) {
    .footer-buttons {
        gap: 5px; /* Reduce gap between buttons */
    }
    .footer-button {
        flex: 1 1 calc(100% - 20px); /* Each button takes up full width minus margins */
        max-width: calc(100% - 20px); /* Ensure buttons don't exceed container width */
        padding: 10px; /* Adjust padding for smaller screens */
        font-size: 12px; /* Reduce font size for mobile */
    }

}
.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    text-align: center;
    max-width: 800px;
}

.service-image {
    width: 1200%;
    height: auto;
    max-width: 800px;
    border-radius: 10px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%; /* Full-width cards for tablets and smaller devices */
    }

    .service-image {
        max-width: 100%;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .service-container {
        gap: 10px;
    }

    .service-card {
        margin: 5px;
    }
         
    }
      
    .graphic-design-h1 {
      text-align: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem; /* Smaller font size */
      font-weight: bold;
      color: #FF6F61; /* Vibrant Coral */
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
      background: linear-gradient(90deg, #FF6F61, #FFD700);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      padding: 10px 20px;
      border: 2px solid #FFD700;
      border-radius: 15px;
      display: inline-block;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center; /* Ensures text alignment inside */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .graphic-design-h1:hover {
      text-align: center;
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }

    .float{
        position:fixed;
        width:60px;
        height:60px;
        bottom:40px;
        right:40px;
        background-color:#25d366;
        color:#FFF;
        border-radius:50px;
        text-align:center;
      font-size:30px;
        box-shadow: 2px 2px 3px #999;
      z-index:100;
    }
    
    .my-float{
        margin-top:16px;
    }
    
    .profile-box {
        display: flex; 
        align-items: center; 
        justify-content: center; 
        padding: 20px; 
        background-color: #221f1f; 
        margin-top: 20px;    
        border-radius: 5px; 

    }
    .profile-image {
        flex: 1; 
        text-align: center
            }
    .profile-content {
        flex: 2; 
        padding: 20px;    
    }
    .design1
    {
        display: inline-block; 
        padding: 10px 20px; 
        background-color: #852f2f; 
        color: white; 
        text-decoration: none; 
        border-radius: 5px; 
        font-size: 16px;        
    }