

/* Set Texture Background */
body {
    background-image: url('../img/bg.jpg'); /* Replace 'your-texture-image.jpg' with the path to your texture image */
    background-repeat: repeat; /* Repeat the texture pattern */
    background-size: auto; /* Auto background size based on the image */
    font-family: 'SolaimanLipi', Arial, sans-serif !important;
}



/* Boxed Layout */
.boxed-layout {
    max-width: 1200px;
    margin: 0 auto; /* Center the content horizontally */
    background-color: #fff; /* White background color */
    padding: 0 10px; /* Add space on left and right */
    padding-top: 5px;
    border-radius: 5px;
    
}



/* Top Bar styling */
.top-bar {
    background-color: #040D12; /* Eye-catching background color */
    color: #fff; /* Text color */
    padding: 10px 0;
    border-bottom: 2px solid #183D3D;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .left-content {
    display: flex;
    align-items: center;
}

.top-bar .school-logo {
    max-width: 40px;
    height: auto;
    margin-right: 10px;
}

.top-phone {
    display: block; /* Display the element by default */
}


/* Style for the school name */
.school-name {
    font-size: 24px; /* Increase font size */
    font-weight: bold; /* Add bold font weight */
    color: #fff; /* Set a distinct color */
    text-transform: uppercase; /* Convert text to uppercase */
    margin-left: 10px; /* Add some space from the logo */
    transition: color 0.3s; /* Smooth color transition on hover */
}

/* Hover effect for the school name */
.school-name:hover {
    color: #F4A623; /* Change text color on hover */
    text-decoration: underline; /* Add underline on hover */
    cursor: pointer; /* Change cursor to pointer on hover */
}


.top-bar .right-content {
    margin-top: 5px; /* Add space between social icons and contact info */
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    transition: color 0.3s; /* Smooth color transition on hover */
}

.top-bar a:hover {
    color: #F4A623; /* Change text color on hover */
}

.social-icon {
    font-size: 24px; /* Adjust icon size */
    transition: color 0.3s; /* Smooth color transition on hover */
}

.social-icon:hover {
    color: #E1306C; /* Change icon color on hover */
}



        /* Jumbotron styling */
        .jumbotron {
            background-color: #93B1A6;
            color: #fff;
            text-align: center;
            padding: 100px 0;
            margin-bottom: 0; /* Remove margin to connect with the top bar */
        }

        /* School Icon styling */
        .school-icon img {
            max-width: 100px; /* Adjust the width as needed */
            height: auto;
        }

        /* Style for Slider Text Content */
.carousel-caption {
    background-color: transparent; /* Transparent background */
    padding: 0; /* Remove padding to avoid covering the image */
}

.carousel-caption h3 {
    font-size: 24px; /* Font size for the title */
    color: #fff; /* Text color */
    background-color: rgba(0, 0, 0, 0.5); /* Background color with some transparency */
    padding: 10px; /* Padding around the title */
    border-radius: 5px; /* Rounded corners for the title */
}

.carousel-caption p {
    font-size: 18px; /* Font size for the description */
    color: #fff; /* Text color */
    background-color: rgba(0, 0, 0, 0.5); /* Background color with some transparency */
    padding: 10px; /* Padding around the description */
    border-radius: 5px; /* Rounded corners for the description */
    margin-top: 10px; /* Margin between title and description */
}

.logo_img {
    max-height: 50px;
}

/* Navbar Styling */
.navbar {
    background-color: #334d37; 
    max-width: 1200px;
    margin: 0 auto;
}



/* Nav Links Styling */
.navbar-nav .nav-item {
    position: relative; /* Create a stacking context for submenus */
}

.navbar-nav .nav-item a.nav-link {
    color: #fff; 
    /* color: #183D3D;  */
    /* font-weight: bold; */
    /* padding: 10px 15px; */
    padding: 5px 5px; /* Adjust padding as needed */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
    border-right: 1px solid #c5f9f9; /* Right border for separation */
    font-size: 16px;
    font-weight: bold;
}

/* Change background color and text color on hover */
.navbar-nav .nav-item:hover a.nav-link {
    background-color: #183D3D; /* Background color on hover */
    color: #02f8f8; /* Text color on hover */
}

/* Style for the two-bar hamburger icon */
.navbar-toggler-icon {
    width: 24px; /* Adjust the width as needed */
    height: 2px; /* Height of the horizontal lines */
    background-color: #fff700; /* Color of the lines */
    border-radius: 2px; /* Rounded corners for lines */
    transition: all 0.2s; /* Smooth transition on hover */
}

/* Change the color on hover */
.navbar-toggler-icon:hover {
    background-color: orangered; /* New color on hover */
    cursor: pointer; /* Show pointer cursor on hover */
}

/* Animation for the two-bar hamburger-to-close icon */
.navbar-toggler.collapsed .navbar-toggler-icon {
    width: 24px; /* Adjust the width as needed */
    height: 2px; /* Height of the horizontal lines */
    background-color: #333; /* Color of the lines */
    border-radius: 2px; /* Rounded corners for lines */
    position: relative; /* Position relative to the icon */
    transition: all 0.2s; /* Smooth transition on hover */
    transform: rotate(0deg); /* Reset rotation */
}

/* Animation for the two-bar hamburger-to-close icon */
.navbar-toggler.collapsed .navbar-toggler-icon::before,
.navbar-toggler.collapsed .navbar-toggler-icon::after {
    content: ''; /* Empty content */
    width: 24px; /* Adjust the width as needed */
    height: 2px; /* Height of the horizontal lines */
    background-color: #orangered; /* Color of the lines */
    border-radius: 2px; /* Rounded corners for lines */
    position: absolute; /* Position relative to the icon */
    transition: all 0.2s; /* Smooth transition on hover */
}

/* Position the two bars */
.navbar-toggler.collapsed .navbar-toggler-icon::before {
    top: -6px; /* Position the top bar */
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
    top: 6px; /* Position the bottom bar */
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: #334d37; /* Background color */
    border: none; /* Remove border */
    border-top: 5px solid #02f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    border-radius: 0; /* Remove border radius */
    font-size: 15px;
}

/* Dropdown Item Styling */
.dropdown-item {
    color: #fff; /* Text color */
    padding: 5px 15px; /* Padding around the text */
    transition: background-color 0.3s; /* Smooth background color transition */
}

/* Change background color on hover */
.dropdown-item:hover {
    background-color: #183D3D; /* Background color on hover */
    color: #02f8f8; /* Text color on hover */
}

/* Add a border to the last item in the dropdown */
.dropdown-item:last-child {
    border-bottom: 1px solid #183D3D; /* Border color */
}

/* Mega Menu Styling */
.mega-menu {
    width: auto; /* Automatically adjust the width */
}

/* Mega Menu Section Styling */
.mega-menu .container {
    padding: 20px;
}

.mega-menu h5 {
    color: #02f8f8; /* Section title color */
    font-weight: bold;
}

/* Dropdown Menu Item Styling */
.mega-menu .dropdown-item {
    text-decoration: none; /* Remove underlines */
    color: #fff; /* Text color */
    display: block;
    padding: 5px 0; /* Add padding for spacing */
}

/* Add a hover effect for the dropdown menu items */
.mega-menu .dropdown-item:hover {
    background-color: #183D3D; /* Background color on hover */
    color: #fff; /* Text color on hover */
}







/* Style for Card Header and Notice List */
.card-header.bg-gray {
    background-color: #040D12; /* Gray background color for the card header */
    text-align: left;
    padding: 2px; /* Reduce the top and bottom padding */
    padding-left: 5px;
    color: white;
    font-size: 24px; /* Adjust the font size */
}

.card-body {
    padding: 20px;
    background-color: #eee;
}

/* Notice List Styling */
.notice-list {
    list-style: none;
    padding: 0;
}

.notice-list-item {
    margin: 5px 0; /* Reduce top and bottom margin */
    border: 1px solid #ddd; /* Add border to each list item */
    padding: 5px; /* Reduce padding for spacing */
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition */
    position: relative; /* Create a relative position for pseudo-element */
}

.notice-list-item:hover {
    background-color: #f5f5f5; /* Background color on hover */
    border-color: #007BFF; /* Border color on hover */
}

.notice-link {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center; /* Center vertically */
}

/* Caret Icon Styling */
.caret-icon::before {
    content: "\25B8"; /* Unicode character for right-pointing caret */
    margin-right: 5px; /* Margin between icon and text */
    font-size: 12px; /* Adjust the icon size as needed */
    color: #007BFF; /* Caret icon color */
}

/* Small tag styling */
.notice-date {
    font-size: 12px;
    color: #777;
    margin-left: auto; /* Push date to the right */
}






.message-box{
    border: 1px solid #eee;
    /* Box Shadow CSS */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}



.msg-header{
    background-color: #040D12;
    border-radius: 5px;
    padding: 10px;
}

.msg-header p{
    color: white;
    text-align: center;
    padding: 0;
    margin: 0;
    font-weight: bolder;
}

.img-msgbox img{
    margin: 20px;
    max-width: 80%;
}

.notice-box{
    /* border: 1px solid #eee; */
    /* Box Shadow CSS */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.notice-header{
    background-color: #040D12;
    /* border-radius: 5px; */
    padding: 10px;
}

.notice-header p{
    color: white;
    text-align: left;
    padding: 0;
    margin: 0;
    font-weight: bolder;
}


.session{
    text-transform: uppercase;
    color: #000;
    font-size: 15px;
  }

#cart{
    background: #f5f5f5; 
    box-shadow: 1px 1px 1px 1px #ccc;
    border: 1px solid #ccc;
    color: black; 
    font-size: 13px; 
    margin-top: 25px;  
    height: auto;
  }

.menus i{
    color: #609513;
    font-size: 14px;
  }
  
  
  
  .menus li{
    list-style-type: none;
    padding:2px;
  
  
  }
  .menus li a{
    text-decoration: none;
    color: #585858;
    font-size: 14px;
    padding: 5px;
    transition: 0.5s;
    text-transform: capitalize;
  
  }
  .menus li a:hover{
    color: #609513;
    margin-left: 5px;
  
  }

  .feature{
    background: #fff;
  }
  
  .feature li{
    list-style-type: none;
    padding:8px;
    border: 1px solid #e5e5e5;
    border-top: none;
    transition: 0.3s;
    font-size: 16px;
  
  }
  
  .feature a li{
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
  
  }
  
  .feature a:hover{
    text-decoration: none;
  }
  
  
  .feature a li:hover{
    color: #609513;
    text-decoration: none;
    background: #f9f9f9;
  }


 /* Customize the footer background color and text color */
.footer {
    background-color: #363535; /* White background color */
    color: #fff; /* Text color (dark gray) */
    padding: 20px 0; /* Add some spacing around the footer content */
  }
  
  /* Style the footer headings */
  .footer h5 {
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  /* Style the footer address and contact information */
  .footer address {
    font-style: normal;
  }
  
  /* Style the footer links */
  .footer ul.list-unstyled li {
    margin-bottom: 5px;
  }
  
  /* Style the social media icons */
  .footer ul.list-unstyled li a i {
    margin-right: 5px;
    font-size: 15px;
    color: #fff; 
    /* Blue color for social media icons (you can change this) */
  }

  .footer ul.list-unstyled li a  {
    margin-right: 5px;
    font-size: 15px;
    color: #fff; 
    /* Blue color for social media icons (you can change this) */
  }

  /* Credit Bar Styling */
  .credit-bar {
    background-color: #040D12;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.credit-bar p {
    margin: 0;
}

.notice_title{
    font-weight: bold;
}

  
.notice-lists {
    /* background-color: #2C3E50;  */
    background-color: #334d37; /* Background color */
    color: #FFFFFF; /* Text color */
    padding: 5px; /* Optional padding for spacing */
}

.notice-items {
    font-size: 16px;
    padding: 5px;
    text-decoration: none; /* Remove default underline */
    color: #FFFFFF; /* Text color for unhovered links */
}

.notice-items:hover {
    color: #F4A623; /* Text color for hovered links */
    font-weight: bold;
    text-decoration: none;
}

.image-box {
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-box img {
    max-width: 100%;
}

.image-box h4 {
    margin-top: 5px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

/* Normal link styles */
a.title-link {
    text-decoration: none;
    color: #007bff; /* Change this to your preferred link color */
    transition: color 0.3s; /* Smooth color transition on hover */
  }
  
  /* Hover effect */
  a.title-link:hover {
    color: #ff6600; /* Change this to your preferred hover color */
    text-decoration: underline; /* Underline the link on hover */
  }

/* Hover effect for specific images with the "hover-zoom" class */
img.hover-zoom {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
  }
  
  /* Hover effect */
  img.hover-zoom:hover {
    transform: scale(1.1);
  }
  







@media (max-width: 767px) {
    .logo_img {
        height: 30px; /* Set a different logo height for mobile */
    }
    
    .top-phone {
        display:none;
    }
    
   
}



/* CSS for desktop view (screens wider than 768px) */
@media (min-width: 769px) {
    .school-name {
        display: inline; /* Show the element on desktop */
    }
}

/* CSS for mobile view (screens up to 768px wide) */



















/* Add this media query for screens with a maximum width of 768px (typical for mobile devices) */
@media (max-width: 768px) {
    /* Adjust top bar padding and font sizes for smaller screens */
    .top-bar {
        padding: 5px 0;
    }

    /* Style for School Name */
.top-bar .left-content {
    display: flex;
    align-items: center;
}

.top-bar .school-logo {
    max-width: 40px; /* Adjust the maximum width of the school logo */
    margin-right: 10px; /* Add spacing between the logo and text */
}

.top-bar .school-name {
    font-size: 20px; /* Adjust the font size */
    color: #fff; /* Text color */
}


    .top-bar a {
        margin-left: 5px;
    }

    .jumbotron {
        padding: 50px 0;
    }

    .carousel-caption h3 {
        font-size: 18px;
        padding: 5px;
    }

    .carousel-caption p {
        font-size: 14px;
        padding: 5px;
        margin-top: 5px;
    }

    /* Adjust main menu and dropdown styling for smaller screens */
    .navbar-nav .nav-item {
        border-right: none; /* Remove border for menu items */
    }

    .navbar-nav .nav-item a.nav-link {
        color: #fff;
        padding: 10px 15px; /* Add padding to menu items for touch-friendly design */
    }

    .navbar-nav .nav-item:hover {
        background-color: transparent; /* Remove background color when hovering */
    }

    .navbar-nav .nav-item:hover a.nav-link {
        color: #fff; /* Text color when hovering */
    }

    /* Adjust mega menu styling for smaller screens */
    .mega-menu {
        width: 100%; /* Full width for smaller screens */
        top: 100%; /* Position below the parent */
        left: 0;
        padding: 10px;
        max-width: none; /* Remove max width */
        box-shadow: none; /* Remove box shadow */
    }

    /* Display mega menu when parent dropdown is clicked on smaller screens */
    .navbar-nav .nav-item.dropdown.show .mega-menu {
        display: block;
    }

    
    
}
