/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Responsive Typography and Layout Adjustments */
@media (max-width: 1200px) {
    body {
        font-size: 18px; /* Adjust font size for larger tablets and smaller screens */
        line-height: 1.5; /* Adjust line height for better readability */
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px; /* Adjust font size for tablets and smaller screens */
        line-height: 1.4; /* Tighter line height for smaller devices */
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px; /* Smaller font size for mobile phones */
        line-height: 1.4; /* Keep line height tight for small screens */
    }
}

/* For extra large screens, if needed */
@media (min-width: 1800px) {
    body {
        font-size: 20px; /* Larger font size for very large screens */
    }
}


/* First Navbar Styles (Smaller) */
/* First Navbar Styles (Smaller) */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 20px; /* Smaller padding */
    border-radius: 5px;
    display: flex;
    justify-content: space-between; /* Spaced items: left and right */
    align-items: center;
    height: 50px; /* Smaller height */
}

/* Dilla University Link */
.dilla-link {
    font-size: 22px; /* Increased font size */
    font-family: 'Poppins', sans-serif; /* Using Poppins font */
    font-weight: 700; /* Bold weight for visibility */
    color: #3A5F0B; /* Single color (blue) */
    text-decoration: none;
    text-transform: uppercase; /* Uppercase for better presentation */
    letter-spacing: 2px; /* Spacing between letters for better readability */
}

/* Social Media Icons and Language Dropdown Container */
.right-section {
    display: flex;
    gap: 20px; /* Space between language and icons */
    align-items: center;
}

/* Social Media Icons */
.icons-section {
    display: flex;
    gap: 15px; /* Increased gap for more space */
    align-items: center;
}

.icon {
    font-size: 20px; /* Smaller icon size */
    color: #333333; /* Default color */
    cursor: pointer;
}

/* Specific Hover Colors for Social Media Icons */
.icon-facebook:hover {
    color: #1877f2; /* Facebook blue */
}

.icon-youtube:hover {
    color: #ff0000; /* YouTube red */
}

.icon-phone:hover {
    color: #34b7f1; /* Phone blue */
}

.icon-telegram:hover {
    color: #0088cc; /* Telegram blue */
}

.icon-envelope:hover {
    color: #ea4335; /* Gmail red */
}

/* Language Dropdown */
.language-dropdown {
    font-size: 12px; /* Smaller font size */
    position: relative;
    display: inline-block;
}

.language-dropdown select {
    appearance: none;
    background-color: #3A5F0B;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 3px 20px; /* Smaller padding */
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    position: relative;
}

.language-dropdown select:hover {
    background-color: #3A5F0B;
}

/* Arrow Styling */
.language-dropdown::after {
    content: '▼'; /* Unicode for down arrow */
    font-size: 10px; /* Smaller arrow size */
    color: white;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Media Queries */

/* For smaller screens like mobile (max-width: 767px) */
@media (max-width: 767px) {
    .header {
        flex-direction: column; /* Stack navbar items vertically */
        height: auto; /* Allow height to adjust for content */
        padding: 10px 15px; /* Adjust padding for smaller screens */
    }

    .dilla-link {
        font-size: 18px; /* Smaller font size for mobile */
        letter-spacing: 1px; /* Reduced letter spacing */
    }

    /* Ensuring icons and language dropdown are side by side on small screens */
    .right-section {
        flex-direction: row; /* Keep items in a row (side by side) */
        gap: 15px; /* Adjust gap between icons and dropdown */
        align-items: center; /* Align vertically */
    }

    .icons-section {
        gap: 10px; /* Adjust icon spacing for smaller screens */
    }

    .language-dropdown {
        font-size: 12px; /* Keep smaller font size for mobile */
    }

    .language-dropdown select {
        font-size: 12px; /* Adjust font size of the dropdown */
        padding: 3px 10px; /* Reduce padding for smaller screen */
    }

    /* Smaller arrow size for dropdown */
    .language-dropdown::after {
        font-size: 8px; /* Smaller arrow */
        right: 5px; /* Adjust arrow position */
    }
}

/* For medium screens (tablets) */
@media (max-width: 1199px) and (min-width: 768px) {
    .main-nav-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px;
        height: auto;
        gap: 20px; /* Added gap between logo and menu bar in responsive layout */
    }

    .hamburger-icon {
        display: flex;
    }

    .logo-wrapper {
        flex-direction: row; /* Default: horizontal logos */
    }

    .nav-links {
        display: none; /* Hide by default */
    }

    /* Active Styles */
    .logo-wrapper.active {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Adjusted gap for vertical layout */
        align-items: flex-start;
        width: 50%; /* Left side */
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Adjusted gap for vertical layout */
        align-items: flex-start;
        width: 50%; /* Right side */
    }
}


/* For medium screens (tablets) */
@media (max-width: 1899px) and (min-width: 1200px) {
    .main-nav-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px;
        height: auto;
        gap: 20px; /* Added gap between logo and menu bar in responsive layout */
    }

    .hamburger-icon {
        display: flex;
    }

    .logo-wrapper {
        flex-direction: row; /* Default: horizontal logos */
    }

    .nav-links {
        display: none; /* Hide by default */
    }

    /* Active Styles */
    .logo-wrapper.active {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Adjusted gap for vertical layout */
        align-items: flex-start;
        width: 50%; /* Left side */
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Adjusted gap for vertical layout */
        align-items: flex-start;
        width: 50%; /* Right side */
    }
}


/* General Navbar Styles */
/* General Navbar Styles */
.main-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #3A5F0B;
    margin-top: 10px;
    height: 80px;
    position: relative;
    z-index: 2;
    gap: 30px; /* Gap between logo section and menu bar */
}

/* Logo Section */
.logo-wrapper {
    display: flex;
    gap: 20px; /* Gap between individual logos */
    align-items: center;
    transition: all 0.3s ease;
}

/* Vertical alignment for logos */
.logo-wrapper.vertical {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px; /* Adjusted gap for vertical layout */
}

/* Logo Images */
.logo img {
    width: 45px; /* Reduced logo size */
    height: auto;
    cursor: pointer;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 12px; /* Reduced gap between links */
    transition: all 0.3s ease;
}

/* Vertical alignment for nav links */
.nav-links.vertical {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px; /* Adjusted gap for vertical layout */
}

/* Navigation Links Hover and Text Effects */
/* General Link Styling */
.nav-links a {
    color: #3A5F0B;
    text-decoration: none; /* Remove underline from the entire link */
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.2s;
    display: flex;
    align-items: center; /* Align text and icon vertically */
}

/* Icon Styling */
.nav-links a i {
    margin-right: 6px; /* Reduced space between the icon and text */
    font-size: 16px; /* Smaller icon size */
}

/* Ensure the text within the div is the one that gets the underline */
.nnav-link {
    display: inline-block;
}

/* Hover Effects for Links */
.nav-links a:hover .nnav-link {
    text-decoration: underline;
    text-decoration-color: #4caf50;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* Prevent underline from affecting the icon */
.nav-links a i:hover {
    text-decoration: none; /* Icons will not have underline on hover */
}

/* Active page link styling */
.nav-links a.active {
    color: #05223d; /* Change to desired color for active link */
}

/* Underline effect for active page */
.nav-links a.active:hover .nnav-link {
    text-decoration: underline;
    text-decoration-color: #4caf50;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}



/* Hamburger Icon */
.hamburger-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    z-index: 3;
    position: relative;
    margin-left: 20px; /* Added margin between logo and hamburger icon */
}

/* Hamburger Icon Bars */
.hamburger-icon .bar {
    height: 4px; /* Reduced bar height */
    width: 100%;
    background-color: #2196f3;
    border-radius: 5px;
}


/* Media Queries for Responsive Design */
@media (max-width: 767px) {
    .main-nav-bar {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px;
        height: auto;
        gap: 20px; /* Added gap between logo and menu bar in responsive layout */
    }

    .hamburger-icon {
        display: flex;
    }

    .logo-wrapper {
        flex-direction: row; /* Default: horizontal logos */
    }

    .nav-links {
        display: none; /* Hide by default */
    }

    /* Active Styles */
    .logo-wrapper.active {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Adjusted gap for vertical layout */
        align-items: flex-start;
        width: 50%; /* Left side */
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Adjusted gap for vertical layout */
        align-items: flex-start;
        width: 50%; /* Right side */
    }
}




/*nav bar end*/





/*home image and text start*/

/* Image Section */
.image-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 130px); /* Full height minus the navbar */
    background-image: url('image1.jpg'); /* Background image */
    background-size: cover; /* Ensure it covers the entire space */
    background-position: center; /* Center the image */
    background-repeat: no-repeat;
    border-radius: 0 0 10px 10px;
    box-shadow: 4px 4px 8px #3A5F0B;
}

/* Quote Section */
.quote-section {
    position: absolute;
    top: 25%; /* Adjusted top value to move it slightly upward */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.4); /* Transparent black background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 80%; /* Responsive width */
    max-width: 600px; /* Max width */
    margin-bottom: 30px; /* Add margin at the bottom for gap with dots */
}


/* Quote Text */
.quote-text {
    margin-bottom: 20px;
    font-size: 24px; /* Adjust font size */
}

/* Sign-In Button */
.sign-in-btn {
    background-color: #3A5F0B;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px; /* Rounded corners */
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    border: 2px solid transparent;
}

.sign-in-btn:hover {
    background-color: #17804f;
    border-color: #17804f;
}

/* Dots Container */
.dot-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px; /* Increased margin above dots for a more prominent gap */
    position: absolute;
    bottom: 5%; /* Position slightly closer to the bottom */
    width: 100%;
    z-index: 20;
}
/* Individual Dots */
.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: white; /* White fill */
    border: 2px solid black; /* Black stroke */
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
}

/* Active Dot */
.dot.active {
    background-color: black; /* Black fill for active */
    border-color: white; /* Invert stroke for contrast */
    transform: scale(1.2); /* Slightly larger size for active dot */
}


/* Hover Effect for Dots */
.dot:hover {
    background-color: lightgray; /* Subtle hover fill */
}

/* Arrow Controls */
.arrow-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    z-index: 10;
}

.arrow-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.arrow-controls button:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quote-section {
        top: 25%; /* Adjust position for smaller screens */
        font-size: 30px; /* Smaller font size */
        padding: 15px;
    }

    .quote-text {
        font-size: 20px;
    }

    .sign-in-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}

@media (max-width: 768px) {
    .quote-section {
        top: 20%; /* Further adjust for small screens */
        width: 90%; /* Wider for small screens */
    }

    .quote-text {
        font-size: 18px;
    }

    .sign-in-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .arrow-controls button {
        font-size: 24px;
        padding: 8px;
    }
}

.mgc {
    font-family: mogra;
    color: #ddd;
}

        /* Section Styling */
        #hpfeatures {
            text-align: center;
            padding: 40px;
            background-color: #05223d; /* Dark teal background */
            color: white;
            border-radius: 0 0 5px 5px;
            box-shadow: 4px 4px 8px #3A5F0B;
        }

        /* Title Styling */
        #hpfeatures h2 {
            font-family: coiny;
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: bold;
            text-transform: uppercase;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        }

        /* Feature Container */
        .hpfeature-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 items in a row by default */
            gap: 20px; /* Space between items */
            justify-items: center;
        }

        /* Feature Box */
        .hpfeature-box {
            background-color: white; /* White box */
            color: #05223d; /* Dark teal text */
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            border: 3px solid #3A5F0B; /* Green border */
            width: 100%; /* Ensure the boxes scale based on the container */
            max-width: 300px; /* Limit max size to ensure it's not too large */
            display: flex;
            flex-direction: column; /* Arrange content vertically */
            justify-content: center; /* Center vertically */
            align-items: center; /* Center horizontally */
        }

        /* Icon Styling */
        .hpfeature-box i {
            font-size: 50px;
            margin-bottom: 15px;
            color: #3A5F0B; /* Green icon */
        }

        /* Feature Box Title */
        .hpfeature-box h3 {
            font-size: 20px;
            font-family: coiny;
            margin: 10px 0;
            text-transform: uppercase;
            font-weight: bold;
            color: #05223d; /* Dark teal text */
        }

        /* Feature Box Description */
        .hpfeature-box p {
            font-family: mogra;
            font-size: 14px;
            color: #3A5F0B; /* Green text */
            margin: 0;
        }

        /* Hover Effect */
        .hpfeature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        /* Mobile: 2 items per row */
        @media (max-width: 767px) {
            .hpfeature-container {
                grid-template-columns: repeat(2, 1fr); /* 2 items in a row on mobile */
            }
            .hpfeature-box {
                max-width: 200px; /* Decrease size on mobile */
            }
        }

        /* Tablet/Computer: 4 items per row */
        @media (min-width: 768px) {
            .hpfeature-container {
                grid-template-columns: repeat(4, 1fr); /* 4 items in a row on tablet/desktop */
            }
            .hpfeature-box {
                max-width: 250px; /* Adjust size for tablet/desktop */
            }
        }

.steminf {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px #3A5F0B;
}
.steminfo h2 {
    color: #3A5F0B;
    font-family: mogra;
    font-size: 2em;
    margin-bottom: 20px;
    margin-left: 20px;
}

.steminf p{
    color: #02282b;
    font-family: coiny;
}

.ul {
    color: #02282b;
    font-size: 1.1em;
    line-height: 1.6;
    margin-left: 20px;
    font-family: coiny;
}
.ul li {
    color: #02282b;
    margin-bottom: 15px;
    margin-left: 20px;
    font-family: coiny;
}

@media screen and (max-width: 768px) {

    .steminfo {
        margin: 10px;
    }
}
/*home image and text end*/


/*about page start*/

/* about page start*/

  /* Apply Mogra Font to Paragraph */
  .mogra-regular {
    font-family: "Mogra", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
  .coiny-regular {
    font-family: "Coiny", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  

section#ab-about {
    padding: 40px;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-family: "Coiny", sans-serif;
    text-align: center;
    color: #3A5F0B;
    border-bottom: 4px solid #3A5F0B;
    background-origin: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.ab-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ab-mainHeading {
font-family: Coiny;
font-weight: bold;
font-size: 25px;
color: #3A5F0B;
}

.ab-mainParagraph {
font-family: Mogra;
color: #031e2e;
font-size: 23px;
}

/* Wrapper around all content for a single border */
.ab-all-content-wrapper {
    border: 5px solid #3A5F0B;
    border-radius: 10px;
    padding: 20px;
    background-color: #ecf0f1;
}

/* Main content */
.ab-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distributes space between image and text */
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
    text-align: left;
}

.ab-main-image {
    border: 5px solid #3A5F0B;
    border-radius: 10px;
    flex: 1 1 40%; /* Flexible width for the image */
    max-width: 500px; /* Restrict the maximum size */
    padding: 10px;
    box-sizing: border-box;
}

.ab-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ab-main-text {
    flex: 1 1 50%; /* Flexible width for the text container */
    max-width: 600px; /* Restrict the maximum width */
    padding: 0 20px;
    text-align: left;
}



/* Small images (visible only on desktop) */
.ab-desktop-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ab-desktop-images .ab-small-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #3A5F0B;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ab-desktop-images .ab-small-img:hover {
    transform: scale(1.1);
    border-color: #2980b9;
}

/* Dots (visible only on mobile) */
.ab-mobile-dots {
    display: none;
    justify-content: center;
    margin-top: 20px;
}

.ab-mobile-dots .ab-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #3A5F0B;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

.ab-mobile-dots .ab-dot:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ab-main-content {
        flex-direction: column; /* Stack vertically */
        text-align: center;
    }

    .ab-main-image {
        width: 100%;
        max-width: 300px;
    }

    .ab-main-image img {
        object-fit: cover;
    }

    .ab-main-text {
        width: 90%;
        margin: 0 auto;
    }

    .ab-desktop-images {
        display: none;
    }

    .ab-mobile-dots {
        display: flex;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .ab-main-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .ab-main-text {
        width: 100%;
        padding: 0 20px;
    }

    .ab-desktop-images .ab-small-img {
        width: 60px;
        height: 60px;
    }

    .ab-mobile-dots .ab-dot {
        width: 12px;
        height: 12px;
    }
}


        /* Container */
        .abccontainer {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            border: 2px solid #3A5F0B; /* Green border */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        /* Header */
        .abcheader {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 3px solid #3A5F0B;
            padding-bottom: 20px;
        }

        .abc-t {
            font-family: Coiny;
            font-size: 36px;
            color: #3A5F0B;
        }

        .abc-p {
            font-size: 18px;
            color: #031e2e;
            font-family: Mogra;
        }

        /* Introduction */
        .abcintro {
            text-align: center;
            margin-bottom: 40px;
        }

        .valab {
            color: #031e2e;
            font-family: mogra;
            margin-left: 18px;
        }



        /* Mission */
        .abcmission {
            background-color: #f8f8f8;
            padding: 20px;
            margin-bottom: 40px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }



        /* Goals */
        .abcgoals {
            font-family: mogra;
            margin-bottom: 40px;
        }




        .abcgoals ul {
            font-family: Mogra;
            list-style: none;
            padding-left: 20px;
        }

        .abcli {
            font-family: mogra;
            font-size: 18px;
            color: #031e2e;
            margin-bottom: 10px;
        }

        /* Achievements */
        .abcachievements {
            margin-bottom: 40px;
        }

        .abcachievements ul {
            font-family: Mogra;
            list-style: none;
            padding-left: 20px;
        }


        /* Recognition */
        .abcrecognition {
            margin-bottom: 40px;
        }


        /* Future Plans */
        .abcfuture-plans {
            margin-bottom: 40px;
        }

        .abct {
            font-family: Coiny;
            font-size: 28px;
            color: #3A5F0B;
            margin-bottom: 20px;
        }

        .abcp {
            font-family: Mogra;
            font-size: 18px;
            color: #031e2e;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .abccontainer {
                width: 90%;
            }

            .abc-t {
                font-size: 30px;
            }

            .abct {
                font-size: 24px;
            }

            .abcgoals ul li {
                font-size: 16px;
            }

            .abcachievements ul li {
                font-size: 16px;
            }
        }

/* about page end*/


/*gallery page start*/


/* Gallery Container Styles */
.ggallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Gallery Title */
  .ggallery-title {
    font-size: 2.5rem;
    font-family: 'Coiny', serif;
    text-align: center;
    color: #3A5F0B;
    border-bottom: 4px solid #3A5F0B;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  
  /* Gallery Layout */
  .ggallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .ggallery-item {
    position: relative;
    border: 4px solid #3A5F0B;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .ggallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .ggallery-item img:hover {
    transform: scale(1.05);
  }
  
  /* Overlay Styles */
  .goverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .ggallery-item:hover .goverlay {
    opacity: 1;
  }
  
  .gtext {
    font-size: 1.5rem;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    position: relative;
  }
  
  /* Link Styling */
  .ggallery-link {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    background-color: #3A5F0B;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .ggallery-link:hover {
    background-color: #2b4708; /* Darker shade of the branding color */
  }
  
  @media (max-width: 768px) {
    .ggallery {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .ggallery {
      grid-template-columns: 1fr;
    }
  }

  /*gallery read more page*/
  .galleryrmh {
    text-align: center;
    padding: 20px;
  }

  .galleryrmh h1 {
    font-family: Coiny;
    margin: 0;
    font-size: 2.5rem;
    text-decoration: underline;
    text-underline-offset: 17px;
    color: #3A5F0B;
  }

  .galleryrm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .photorm {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px #3A5F0B;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .photorm:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px #3A5F0B;
  }

  .photorm img {
    width: 100%;
    display: block;
    border-bottom: 1px solid #ccc;
  }

  .captionrm {
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #3A5F0B;
  }


  /* Modal styles */
  .modalrm {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .modalrm-content {
    max-width: 80%;
    max-height: 80%;
  }

  .closerm-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }
  /*gallery read more page*/
  
/*gallery page end*/  


/*project page start*/
/* Project Container */
.pprojects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Project Item Styling */
  .pproject-item {
    display: flex;
    margin-bottom: 30px;
    border: 3px solid #3A5F0B;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }
  
  .pproject-item img {
    width: 250px;
    height: auto;
    object-fit: cover;
    border-right: 3px solid #3A5F0B;
  }
  
  /* Project Details */
  .pproject-details {
    padding: 20px;
    flex-grow: 1;
  }
  
  /* Classes for Heading and Paragraph */
  .pproject-title {
    color: #3A5F0B;
    font-size: 2rem;
    font-family: 'Black Ops One', sans-serif;  /* Updated font */
    font-weight: bolder;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .pproject-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #09284d;
    font-family: 'Coiny', system-ui;  /* Applied Coiny font to description */
  }
  
  /* Apply Mogra Font to Paragraph */
  .mogra-regular {
    font-family: "Mogra", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
  .coiny-regular {
    font-family: "Coiny", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
  /* Project Link Styling */
  .pproject-link {
    text-decoration: none;
    color: #fff;
    background-color: #3A5F0B;
    padding: 12px 18px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .pproject-link:hover {
    background-color: #2b4708;
    transform: scale(1.05);
  }
  
  /* Underlined Title Styling */
  .punderlined-title {
    color: #3A5F0B;
    font-weight: bolder;
    font-family: 'Coiny', serif;
    letter-spacing: 1px;
    text-align: center; /* Center the title */
    border-bottom: 3px solid #3A5F0B; /* Underline with the same color */
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  
  /* Responsive Layout */
  @media (max-width: 768px) {
    .pproject-item {
      flex-direction: column;
      align-items: center;
    }
  
    .pproject-item img {
      width: 100%;
      height: auto;
      border-right: none;
    }
  
    .pproject-details {
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .pprojects-container {
      padding: 10px;
    }
  
    .pprojects-title {
      font-size: 2rem;
    }
  
    .pproject-title {
      font-size: 1.6rem;
    }
  }

  .show-morenn-container {
    text-align: center;
    margin: 2rem 0;
}

.show-morenn-btn {
    background-color: #3A5F0B;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.show-morenn-btn:hover {
    background-color: #2b4708;
}
/*projectlm page start*/
.prcontainer {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.prsection-titleh {
    color: #3A5F0B;
    text-align: center;
    font-family: coiny;
}

.prsection-title {
    color: #3A5F0B;
    font-family: coiny;
    text-align: left;
}

.printro, .prconclusion {
    background-color: #e8f5e9;
    padding: 15px;
    font-family: mogra;
    color: #09284d;
    border-left: 5px solid #3A5F0B;
    margin-bottom: 20px;
}

.plmi-prsection-title {
    color: #3A5F0B;
    font-family: coiny;
}

/* Gallery Styles */
.plmi-prproject-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 15px;
    margin-top: 20px;
    padding: 10px;
}

.plmi-prproject-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 20px rgba(9, 40, 77, 0.4); /* Stronger shadow with #09284d */
    transition: box-shadow 0.3s ease; /* Smooth transition for shadow only */
    object-fit: cover; /* Ensure the image covers the space without distortion */
}

.plmi-prproject-gallery img:hover {
    box-shadow: 0 12px 30px rgba(9, 40, 77, 0.6); /* Stronger hover shadow with #09284d */
    cursor: pointer;
}

/* Modal Styles */
.plmi-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.plmi-modal-content {
    max-width: 90%; /* Responsive width */
    max-height: 90%; /* Responsive height */
    object-fit: contain; /* Preserve aspect ratio */
    border-radius: 8px; /* Rounded corners for the modal image */
    box-shadow: 0 8px 20px rgba(9, 40, 77, 0.7); /* Strong shadow for modal with #09284d */
}

.plmi-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: transparent;
    border: none;
}

.plmi-close:hover,
.plmi-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plmi-prproject-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 480px) {
    .plmi-prproject-gallery {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
}


.prul {
    font-family: mogra;
    color: #09284d;
    list-style-type: square;
    padding-left: 20px;
}

.ptext {
    font-family: mogra;
    color: #09284d;
}

/*projectlm page end*/
/*project page end*/  


/*news page start*/

/* Main Heading Styles */
.nmain-heading {
    font-size: 2.5rem; /* Large, prominent heading */
    text-align: center;
    font-family: 'Coiny', serif;
    color: #3A5F0B;
    margin: 2rem 0; /* Adds spacing around the heading */
    position: relative; /* Enables positioning for the underline */
    width: 88%; /* Sets the width of the heading to 80% */
    margin-left: auto; /* Centers the heading horizontally */
    margin-right: auto; /* Centers the heading horizontally */
}

.nmain-heading::after {
    content: ""; /* Creates a decorative element for the underline */
    display: block;
    width: 100%; /* Extends underline from corner to corner within the 80% container */
    height: 4px; /* Thickness of the underline */
    background-color: #3A5F0B; /* Matches the brand color */
    position: absolute;
    bottom: -5px; /* Adjusts the space below the text */
    left: 0; /* Starts from the left edge of the container */
}

/* Section Styles */
.nnews-section {
    margin-bottom: 3rem;
    border: 4px solid #3A5F0B;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-left: 6%; /* Minimize horizontal space by adjusting the left margin */
    margin-right: 6%; /* Minimize horizontal space by adjusting the right margin */
}



.mogra-regular {
    font-family: "Mogra", system-ui;
    font-weight: 400;
    font-style: normal;
}

.coiny-regular {
    font-family: "Coiny", serif;
    font-weight: 400;
    font-style: normal;
}



/* Section Heading Styles */
.nnews-section h2 {
    background-color: #3A5F0B;
    color: #fff;
    padding: 1rem 1.5rem;
    margin: 0;
    border-bottom: 1px solid #3A5F0B;
    font-size: 1.8rem; /* Larger section title */
    text-align: center;
}

/* Article Layout */
.nnews-article {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
}

.nnews-image {
    width: 300px;  /* Fixed width */
    height: 200px; /* Fixed height */
    object-fit: cover;  /* Ensures the image covers the area without stretching */
    border-radius: 8px;  /* Keeps the rounded corners */
    flex-shrink: 0;  /* Prevents the image from shrinking */
}


.nnews-text {
    flex: 1;
    text-align: center; /* Center-aligns all text content */
}

/* Article Heading with Underline */
.nnews-text h3 {
    margin: 0 0 1rem;
    color: #3A5F0B;
    text-decoration: none; /* Remove default underline */
    text-align: center;
    font-size: 1.5rem; /* Large, visible text */
    font-weight: bold;
    font-family: Coiny;
    position: relative; /* Enables positioning for the underline */
    width: 80%; /* Set the width of the heading to 80% */
    margin-left: auto; /* Centers the heading horizontally */
    margin-right: auto; /* Centers the heading horizontally */
}

.nnews-text h3::after {
    content: ""; /* Creates a decorative element for the underline */
    display: block;
    width: 100%; /* Extends underline from corner to corner within the 80% container */
    height: 4px; /* Thickness of the underline */
    background-color: #3A5F0B; /* Matches the brand color */
    position: absolute;
    bottom: -5px; /* Adjusts the space below the text */
    left: 0; /* Starts from the left edge of the container */
}

/* Article Text Styles */
.nnews-text p {
    margin-bottom: 1rem;
    color: #09284d;
    font-size: 1.2rem; /* Increase paragraph size */
    line-height: 1.8; /* More space between lines for better readability */
    font-family: Mogra;
}

/* "Read More" Button */
.nnread-more {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background-color: #3A5F0B;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
}

.nnread-more:hover {
    background-color: #2b4708;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nnews-article {
        flex-direction: column;
        align-items: flex-start;
    }

    .nnews-image {
        width: 100%; /* Full-width images on smaller screens */
        height: auto;
    }

    .nnews-text h3 {
        font-size: 1.8rem; /* Slightly smaller on smaller screens */
    }

    .nnews-text p {
        font-size: 1rem;
    }
}
/*newsvp start*/
.nvnews-article {
    padding: 40px 20px;
    margin: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 10px 15px #3A5F0B; /* Shadow instead of border */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.nvnews-article h2 {
    color: #3A5F0B;
    font-size: 2.5em;
    font-family: coiny;
    margin-bottom: 20px;
}

.nvnews-article p {
    font-size: 1.1em;
    color: #052b3d;
    font-family: mogra;
    line-height: 1.6;
}

.nvnews-article .date {
    font-size: 1.1em;
    color: #888;
    margin-bottom: 10px;
}

.nvnews-article img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.nvback-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #3A5F0B;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.nvback-link:hover {
    background-color: #2A4E0F;
}



/* Responsive Design */
@media screen and (max-width: 768px) {


    .nvnews-article {
        margin: 10px;
    }
}
/*newsvp end*/

/* Latest News Section (Fixed for All Screens) */
.latest-news {
    position: fixed;
    top: 23%; /* Initial position for desktop */
    right: 20px; /* Default for desktop (on the right side) */
    width: 250px; /* Default width for desktop */
    height: 300px; /* Default height for desktop */
    background-color: #fff;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 3px solid #3A5F0B;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: top 0.3s ease-in-out, height 0.3s ease-in-out, width 0.3s ease-in-out, border-width 0.3s ease-in-out;
}

/* For Tablets and Mobile (Centered Horizontally) */
@media (max-width: 768px) {
    .latest-news {
        top: 10%; /* Slightly higher to ensure visibility */
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Shift back by half of the width to center */
        width: 80%; /* Adjust width to be responsive */
        height: auto; /* Adjust height to fit content */
        right: unset; /* Remove the right position */
    }
}

/* For Small Mobile Devices */
@media (max-width: 480px) {
    .latest-news {
        width: 90%; /* Even more compact for smaller screens */
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Ensure the arrow buttons are always functional on mobile */
.prev-btn, .next-btn {
    width: 35px; /* Adjust size of the buttons */
    height: 35px;
}


.read-morenn-container {
    text-align: center;
    margin: 2rem 0;
}

.read-morenn-btn {
    background-color: #3A5F0B;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.read-morenn-btn:hover {
    background-color: #2b4708;
}


        /* Title and Controls */
        .latest-news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: Coiny;
        }

        .news-text {
            font-size: 0.8rem; /* Smaller title size */
            color: #3A5F0B;
            
            font-weight: bold;
        }

        .prev-btn, .next-btn {
            background-color: #3A5F0B;
            color: #fff;
            padding: 0.4rem;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            border-radius: 50%; /* Rounded arrows */
            width: 35px; /* Slightly bigger button */
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .prev-btn:hover, .next-btn:hover {
            background-color: #2b4708;
        }

        /* Image, Title, and Description Styling */
        .latest-news-article {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .latest-news-image {
            width: 100%;
            height: 60px; /* Smaller image */
            object-fit: cover;
            border-radius: 10px; /* Rounded image */
            margin-bottom: 0.5rem;
        }

        .latest-news-content h3 {
            font-size: 0.8rem; /* Smaller headline */
            color: #3A5F0B;
            font-family: Coiny;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .latest-news-content p {
            font-size: 0.7rem; /* Smaller text */
            font-family: Mogra;
            color: #033b49;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .nread-more {
            font-size: 0.8rem;
            color: #fff;
            background-color: #3A5F0B;
            text-decoration: none;
            padding: 0.6rem;
            border-radius: 20px; /* Rounded button */
            display: inline-block;
            margin-top: 0.5rem;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
        }

        .nread-more:hover {
            background-color: #2b4708;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .latest-news {
                width: 230px;
            }
        }

        @media (max-width: 768px) {
            .latest-news {
                width: 100%;
                position: relative;
                top: 0;
                right: 0;
                height: auto;
            }
        }


/*news page end*/



/*announcement page start*/
/* Main Heading */
/* Header Styles */
/* Header */
.anmain-header {
    background-color: #f4f4f4;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #3A5F0B;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.anmain-heading {
    font-family: 'Coiny', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    position: relative;
}

.anmain-heading::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background-color: #3A5F0B;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Announcements */
.announcement-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}


.announcement-card {
    background-color: #fff;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 6px 12px rgba(8, 48, 12, 0.767);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #ddd;
    margin-bottom: 2rem; /* Ensures some space at the bottom */
}

.announcement-card:hover {
    transform: translateY(-10px);
    box-shadow: 2px 12px 22px rgba(1, 37, 12, 0.637);
    border-color: #3A5F0B;
}

.announcement-title {
    font-size: 1.6rem;
    color: #3A5F0B;
    font-family: 'Coiny', serif;
    margin-bottom: 1rem;
}

.announcement-description {
    font-size: 1rem;
    color: #09284d;
    font-family: Mogra;
    margin-bottom: 1.5rem;
}

.announcement-link {
    color: #fff;
    background-color: #3A5F0B;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.announcement-link:hover {
    background-color: #2b4708;
}

/* Read More Button */
.read-more-container {
    text-align: center;
    margin: 2rem 0;
}

.read-more-btn {
    background-color: #3A5F0B;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #2b4708;
}

/* Image Styling */
.announcement-card img {
    width: 100%;
    height: 200px; /* Fixed height */
    object-fit: cover; /* Ensures images fill the container without distortion */
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .announcement-card {
        width: 45%; /* On medium-sized screens, cards take up 45% of the container */
    }
}

@media (max-width: 768px) {
    .announcement-container {
        flex-direction: column;
        align-items: center;
    }
    .announcement-card {
        width: 90%; /* Make cards 90% width on small screens */
        max-width: 350px; /* Max width to prevent them from becoming too wide */
    }
    .anmain-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .announcement-card {
        width: 100%; /* Make cards take full width on very small screens */
    }
    .anmain-heading {
        font-size: 2.5rem;
    }
}
/* Full-screen modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Full screen width */
    height: 100vh; /* Full screen height */
    background-color: rgba(0, 0, 0, 0.9); /* Dark background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal img {
    max-width: 100%; /* Ensure image fits screen */
    max-height: 100%;
    object-fit: contain; /* Preserve aspect ratio */
    border-radius: 0; /* Full screen has no borders */
}

.backspace-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    color: #000;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    z-index: 1100; /* Ensure it appears above the modal image */
    transition: background-color 0.3s ease;
}

.backspace-icon:hover {
    background-color: #3A5F0B;
    color: white;
}

        /*end announcement page*/

/*contact page*/
/* Contact Page Styling */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Title Section */
.contact-title {
    text-align: center;
    font-family: 'Coiny', sans-serif;
    color: #3A5F0B;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #555;
}

/* Contact Form and Info Styling */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Contact Form Styling */
.contact-form {
    flex: 1 1 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #3A5F0B; /* Adding border */
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Form Inputs and Button Styling */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #3A5F0B;
}

.contact-form input,
.contact-form textarea {
    width: 96%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3A5F0B;
}

.contact-form .submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #3A5F0B;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .submit-btn:hover {
    background-color: #2b4708;
}

/* Contact Info Section Styling */
/* Contact Info Section */
.contact-info {
    flex: 1 1 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid #3A5F0B; /* Green border */
}

.contact-info h3, .contact-info h4 {
    color: #3A5F0B;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin: 15px 0;
}

.info-item img.icon-img {
    width: 40px;
    height: 40px;
}

.info-item a {
    text-decoration: none;
    color: #3A5F0B;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #2b4708;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons img.social-img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s, opacity 0.3s;
    cursor: pointer;
}

.social-icons img.social-img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}



/* Map Section Styling */
.map-container {
    margin-top: 40px;
    text-align: center;
    border: 3px solid #3A5F0B; /* Added border to the map container */
    padding: 20px;
    border-radius: 10px;
}

.map-container h3 {
    color: #3A5F0B;
    margin-bottom: 20px;
}

iframe {
    border-radius: 10px;
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-form .submit-btn {
        font-size: 1rem;
    }
}

/*end contact page*/


/*login page start*/

.ac-main-container {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign-in-text {
    font-family: 'Coiny', serif;
    color:#3A5F0B;
    font-size: 30px;
}

.ac-sign-in-container {
    background-color: white;
    border: 3px solid #3A5F0B;
    border-radius: 8px;
    padding: 20px;
    width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo Section */
.ac-logo-container {
    display: flex;
    justify-content: center;
    gap: 50px; /* Space between logos */
    margin-bottom: 20px;
}

.ac-logo {
    width: 70px; /* Default size for all logos */
    height: 70px;
    object-fit: contain;
}

.ac-logo-large {
    width: 100px; /* Larger size for Logo 2 */
    height: 100px;
}

/* Anchor Tags for Logos */
.ac-logo-container a {
    text-decoration: none; /* Remove link underline */
    display: inline-block;
}

.ac-logo-container a:hover {
    transform: scale(1.1); /* Slight zoom effect */
    transition: transform 0.2s;
}



/* Form Inputs */
.ac-input-group {
    text-align: left;
    margin-bottom: 15px;
}



.ac-input-box, .ac-button-box {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    border: 2px solid #3A5F0B;
    box-sizing: border-box;
}

.ac-input-box:focus {
    border-color: #2E4708;
    box-shadow: 0 0 5px #3A5F0B;
}

/* Button */
.ac-button-box {
    background-color: #3A5F0B;
    color: white;
    cursor: pointer;
    font-weight: bold;
    border: 2px solid #3A5F0B;
    margin-top: 10px;
    transition: background-color 0.3s, border-color 0.3s;
}

.ac-button-box:hover {
    background-color: #2E4708;
    border-color: #2E4708;
}

.have-account{
    margin-top: 4px;
}

.have-account a {
    color: #3A5F0B;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

/*eye icon*/
        /* Style for the password input container */
        .password-container {
            position: relative;
            width: 100%;
        }

        /* Style for the input box */
        .ac-input-box {
            width: 100%;
            padding-right: 30px; /* Space for the eye icon */
            padding-left: 10px;
            font-size: 16px;
            height: 40px;
        }

        /* Style for the eye icon inside the input box */
        #eye-icon {
            position: absolute;
            right: 10px; /* Position it inside the input box */
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            cursor: pointer;
            color: #333;
        }

        /* Optionally, you can style the icon when the password is shown */
        #eye-icon:hover {
            color: #3A5F0B; /* Add hover effect */
        }
/*login page end*/

/*create account page start*/
/* Main Container */
.ccac-main-container {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4; /* Light neutral background */
    min-height: 100vh;
}

/* Logo Section */
.ccac-logo-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    align-items: center;
}

.ccac-logo {
    width: 70px; 
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s;
}

.ccac-logo-large {
    width: 70px;
    height: 70px;
}

.ccac-logo:hover {
    transform: scale(1.1);
}

/* Form Container */
.ccac-sign-in-container {
    background-color: #ffffff;
    border: 4px solid #3A5F0B;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Heading */
.ccsign-in-text {
    font-family: 'Coiny', serif;
    color: #3A5F0B;
    font-size: 28px;
    margin-bottom: 10px;
}

.ccform-subtext {
    font-family: 'Arial', sans-serif;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Input Fields */
.ccac-input-group {
    text-align: left;
    margin-bottom: 20px;
}

.ccac-input-group label {
    font-weight: bold;
    color: #2E4708;
    margin-bottom: 5px;
}

.ccac-input-box {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    border: 1.5px solid #3A5F0B;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.ccac-input-box:focus {
    border-color: #2E4708;
    box-shadow: 0 0 6px rgba(58, 95, 11, 0.4);
}

/* Button */
.ccac-button-box {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #3A5F0B;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ccac-button-box:hover {
    background-color: #2E4708;
    transform: scale(1.02);
}

/* Links */
.cchave-account {
    margin-top: 15px;
}

.cchave-account a {
    color: #3A5F0B;
    text-decoration: underline;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ccac-sign-in-container {
        padding: 20px;
        width: 90%;
    }
}

/*eye icon*/
.input-wrapper {
    position: relative;
}
.ccac-input-box {
    padding-right: 30px; /* To make space for the eye icon */
}
.cfas {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.eyeicon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
/*create account page end*/




/*footer start*/
/* Footer General Styling */
.footer {
    background-color: #3A5F0B; /* Green background */
    padding: 20px;
    color: white;
    border: 1px solid #3A5F0B; /* Darker green border */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Footer Container */
.footer-container {
    background-color: white;
    padding: 30px 50px;
    border-radius: 15px;
    border: 1px solid #3A5F0B; /* Green border around inner section */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Footer Content Styling */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Enable wrapping on smaller screens */
    gap: 20px; /* Gap between sections */
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1; /* Equal width on flex items */
    min-width: 200px; /* Minimum width for logos section */
}

.footer-title {
    margin: 0;
    font-weight: 700;
    color: #3A5F0B; /* Darker green */
    font-size: 18px; /* Title font size */
    text-transform: uppercase; /* Uppercase title */
    margin-bottom: 10px; /* Space between title and logos */
    text-align: center;
}

.logos {
    display: flex;
    gap: 20px; /* Space between logos */
    justify-content: center;
    flex-wrap: wrap; /* Wrap logos on smaller screens */
}

.footer-logo {
    width: 80px;
    height: auto;
    cursor: pointer;
    border: 1px solid #3A5F0B; /* Green border */
    border-radius: 5px;
    padding: 5px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1); /* Logo scaling effect on hover */
}

/* Social Media Section */
.footer-social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1; /* Equal width */
    min-width: 200px; /* Minimum width for social media */
}

.social-icons {
    display: flex;
    gap: 15px; /* Space between icons */
    flex-wrap: wrap; /* Wrap icons on smaller screens */
    justify-content: center;
}

.footer-social-media a {
    color: #333333; /* Default green color */
    transition: color 0.3s ease-in-out;
    text-decoration: none;
    font-size: 18px; /* Adjust font size for smaller icons */
}

/* Hover Colors for Specific Icons */
.footer-social-media .fa-facebook-f:hover {
    color: #1877f2; /* Facebook blue */
}

.footer-social-media .fa-youtube:hover {
    color: #ff0000; /* YouTube red */
}

.footer-social-media .fa-phone-alt:hover {
    color: #34b7f1; /* Phone blue */
}

.footer-social-media .fa-telegram-plane:hover {
    color: #0088cc; /* Telegram blue */
}

.footer-social-media .fa-envelope:hover {
    color: #d44638; /* Email red */
}

/* General hover effect for all icons */
.footer-social-media a:hover {
    color: inherit; /* Inherit the color from the specific icon on hover */
}


/* Hot Links Section */
.footer-hot-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1; /* Equal width */
    min-width: 200px; /* Minimum width for links */
}

/* Adjust the links layout into 2 columns */
.footer-hot-links a {
    display: inline-block; /* Allow links to be in line */
    width: 45%; /* Adjust width to fit two links per row */
    margin: 5px 0; /* Space between links */
    text-align: left; /* Align text to the left */
}

/* Hot Links Styling */
.footer-link {
    color: #04520f;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #06bb24; /* Lighter green on hover */
    text-decoration: underline;
}

/* Optional: add a little styling for icon and text alignment */
.footer-link i {
    margin-right: 1px; /* Space between icon and text */
}




/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Reduce gap for a more compact layout */
    flex: 1; /* Equal width */
    min-width: 100px; /* Adjusted minimum width for compact styling */
}

.footer-contact p {
    margin: 0;
    font-size: 20px; /* Smaller text size */
    color: #3A5F0B; /* Slightly lighter text color for readability */
}

.footer-contact a {
    color: #3A5F0B;
    font-weight: bold;
    font-size: 12px; /* Smaller text size */
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #06bb24;
}

/* Icon Styles */
.footer-contact i {
    margin-right: 5px; /* Adjust spacing for smaller icons */
    color: #0b641a;
    font-size: 17px; /* Smaller icon size */
    transition: transform 0.3s ease;
}

/* Rotate Phone Icon */
.footer-contact .fas.fa-phone:hover {
    transform: rotate(30deg); /* Slightly reduced rotation for smaller icons */
}

/* Copyright Text */
.footer-text {
    text-align: center;
    margin-top: 15px;
    color: white;
    font-size: 14px; /* Smaller text size */
    font-weight: 500; /* Slightly reduced weight for subtlety */
    background-color: #45720a; /* Darker green background */
    padding: 8px; /* Compact padding */
    border-radius: 4px; /* Adjusted radius for smaller size */
}




/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        padding: 20px; /* Reduce padding for smaller screens */
    }

    .footer-title {
        font-size: 16px; /* Smaller title font size */
    }

    .footer-logo {
        width: 60px; /* Smaller logos */
    }

    .footer-contact i,
    .footer-social-media a {
        font-size: 16px; /* Smaller icon size */
    }

    .footer-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        flex-direction: column; /* Stack sections vertically */
        gap: 10px;
    }

    .social-icons {
        gap: 10px; /* Reduce space between icons */
    }

    .footer-link {
        font-size: 14px; /* Smaller font size for links */
    }
}

/* General Spacing Adjustment for Mobile View */
@media (max-width: 767px) {
    .main-nav-bar {
        margin-bottom: 15px; /* Adjust for smaller screens */
    }

    .footer {
        margin-top: 15px; /* Adjust for smaller screens */
    }
}

/* The rectangle that is hidden but occupies space */
#hidden-rectangle {
    width: 200px;
    height: 100px;
    background-color: blue;
    visibility: hidden; /* Hidden but keeps space */
  }
  
  /* Another visible box for context */
  #another-box {
    width: 200px;
    height: 50px;
    background-color: green;
    margin-top: 10px;
  }

