﻿
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Allows vertical scrolling */
    overflow-y: auto; /* Allows Horizontal scrolling */
    width: 100%;
    font-family: Arial;
}
/* Style for the modal overlay */
.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.6); /* Black background with opacity */
    padding-top: 50px;
}

/* Modal content box styling */
.modal-content {
    position: relative;
    /*background:linear-gradient(to bottom, #ccff33 0%, #003300 100%);*/
    margin: 5% auto;
    /*padding: 20px;*/
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    /*  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);*/
    /*  border-style: solid;
    border-color: green;*/
    overflow-y: auto; /* Enable vertical scroll if content is too tall */
}

/* Close button styling */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

    /* Close button hover effect */
    .close:hover,
    .close:focus {
        color: red;
        text-decoration: none;
        cursor: pointer;
    }


/* Login Form Styles */
.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal-content label {
    margin: 8px 0 4px;
}

.modal-content input {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.modal-content button {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

    .modal-content button:hover {
        background-color: #45a049;
    }

.top-bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);
    /* color: white;*/
    /*  position: fixed;*/ /* Make it fixed */
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's on top of other content */
}

.left-section,
.right-section {
    display: flex;
    align-items: center;
}
.sign{
    /*width:100px;*/
}
.user-login-btn {
    display: flex;
    flex-direction: column; /* Stack the icon and text vertically */
    align-items: center; /* Center the content horizontally */
    /*background-color: green;*/ /* Button background color */
    /* background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);*/
    background-color: white;
    border-radius: 5px;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    /*font-size: 16px;*/ /* Adjust the font size */
    /*  margin-right: 20px;*/
    color: black;
}

    .user-login-btn img {
        width: 50px; /* Adjust the width as needed */
        height:50px;
    }

/*#btnLogin img{
    width:30px;
    height:30px;
}*/


.lang-btn {
    background-color: transparent;
    border: none;
    color: white;
    /*padding: 5px 10px;*/
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure border doesn't affect the size */
}

    .lang-btn:hover {
        /*padding: 4px 9px;*/
        border: 1px solid white;
    }

/*.search-btn {
    background-color: black;
    border: none;
    color: white;
    padding: 5px 10px;*/
/*  margin-right: 10px;*/
/*cursor: pointer;
    border-radius: 5px;
}
    .search-btn:hover {
        padding: 4px 9px;
        border: 1px solid white;
    }*/
.Home {
    border: none;
    cursor: pointer;
    background-color: transparent;
    height: 25px;
    width: 40px;
}

    .Home img {
        width: 80%; /* Ensure the image fits inside */
        height: 80%;
        display: block;
    }

    .Home:hover {
        border: 1px solid white;
    }

.center-section {
    position: relative;
}

.font-size-toggle button {
    background-color: transparent;
    border: none;
    color: white;
    padding: 5px;
    cursor: pointer;
}

    .font-size-toggle button:hover {
        border: 1px solid white;
    }
/* Search bar container */
.search-bar {
    height:20px;
    position: relative;
    display: flex;
    align-items: center;
    width: 150px;
    border-radius: 25px;
    overflow: hidden; /* Ensures the design remains clean */
    background-color: #fff;
}

/* Input field styling */
.search-input {
    /*margin-left: 10px;*/
    flex: 1; /* Fills available space */
    /*padding: 10px 35px 10px 15px;*/ /* Space for the clear icon */
    font-size: 16px;
    border: none;
    outline: none;
}
input[type="text"] {
    /*padding: 8px;*/
    width: 100px;
    font-size: 14px;
    /*border: 1px solid #ccc;*/
    border-radius: 4px;
}
/* Hover effect on input */
/*.search-bar:hover {
        border: 1px solid orange;*/ /* Optional: Highlight border on hover */
/*}*/

/* Clear icon */
.clear-icon {
    position: absolute;
    right: 40px; /* Position inside the input */
    color: #888;
    font-size: 16px;
    cursor: pointer;
    display: none; /* Hidden by default */
}

    /* Clear icon hover effect */
    .clear-icon:hover {
        color: #ff5555;
    }

/* Search icon */
.search-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: orange;
    padding: 8px;
    /*  border-radius: 50%;*/ /* Circular icon */
    cursor: pointer;
}

    /* Hover effect on search icon */
    .search-icon:hover {
        background-color: #f5a623;
    }

.weather {
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .weather span {
        padding: 2px 5px; /* Add consistent padding */
        margin: 0 5px;
        font-size: 16px;
        color: white;
    }

        .weather span:hover {
            border: 1px solid white;
        }

.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
    /*  position: fixed;*/
    width: 100%;
    top: auto; /* Adjust the top position based on the height of the top-bar */
    z-index: 999;
    text-align: center;
}

/*.header-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header img {
    height: 60px;
}*/
/* Container for the header images */
.header-images {
    display: flex;
    justify-content: center; /* Centers the images horizontally */
    /*gap: 20px;*/ /*Space between the image containers */
    /*flex-wrap: wrap;*/ /* Ensures images wrap to the next line on smaller screens */
}

/* Each individual image container */
.image-container {
    display: flex;
    flex-direction: column; /* Stacks image and caption vertically */
    align-items: center; /* Center-aligns the image and caption */
    text-align: center;
}
    /* Style for images to make them round */
    .image-container img {
        border-radius: 50%; /* Makes the image round */
        height: 45px;
    }
/* Caption style for image names */
/*.image-name {
    font-size: 14px;*/ /* Font size for the caption */
/*color: #333;*/ /* Color for the caption text */
/*font-weight: bold;*/ /* Makes the name bold */
/*}*/
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo img {
        height: 70px;
    }
    .tx{
        display:flex;
        width:100%;
    }
.text-container {
    width:100%;
    text-align: center;
    /*margin-left: 30px;*/
}

#geoTitle {
    /*font-size: 0.85rem;*/ /* Adjust font size based on screen size */
}


.text-container h3 {
    display:flex;
    justify-content:center;
    margin: 5px;    
    /* align-items: center;*/
    /*font-size: 0.85rem;*/
    font-weight: bold;
    font-family: 'Noto Sans Kannada', sans-serif; /* Support for Kannada text */
}

.green-bar {
    position: relative;
    background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);
    top: auto;
    height: auto;
    width: 100%;
    margin: 0;
    padding: 5px;
    text-align: left;
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox for horizontal layout */
    justify-content: flex-start;
}

    .navbar li {
        position: relative;
    }

    .navbar a {
        position: relative;
        display: block;
        color: white;
        font-size: 1rem;
        gap: 20px;
        text-decoration: none;
        text-transform: uppercase;
    }

ul li {
    text-align: left;
    margin-right: 10px;
}

.navbar a:hover {
    color: blue;
}
/* Main content area */
.main-content {
    display: flex;
    justify-content: space-between; /* Space between sections */
    align-items: center; /* Ensure all sections stretch to the same height */
    overflow: hidden; /* Prevent overflow */
    /*padding: 20px;*/ /* Add padding for better spacing */
}
/* Sections (Left, Center, Right) */
.left-align,
.right-align {
    width:100%;
    max-width:250px;
    height:360PX;
    flex: 1; /* Each side takes equal space */
    /*height: auto;*/ /* Allow height to adjust based on content */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /*padding: 10px;*/ /* Add padding for inner spacing */
    box-sizing: border-box; /* Include padding in width calculations */
    /*border: 2px solid green;*/
    margin-right: 10px;
}

.center-align {
    height: 360PX;
    width: 100%;
    max-width: 700px;
    flex: 2; /* Center is wider */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*padding-left: 10px;*/ /* Add padding for inner spacing */
    box-sizing: border-box; /* Include padding in width calculations */
}

/* Carousel styling */
.carousel {
    flex-grow: 1; /* Allow carousel to expand vertically */
    width: 100%; /* Make it responsive */
    max-width: 700px; /* Limit maximum width */
    height: 360px;
    position: relative;
    overflow: hidden;
    margin: 0; /* Center horizontally */
}

.carousel-inner {
    /*display: flex;*/
    transition: transform 0.9s ease-in-out;
}

    .carousel-inner img {
        flex-grow: 1; /* Allow carousel to expand vertically */
        width: 100%; /* Make it responsive */
        position: relative;
        overflow: hidden;
        /*margin: 0;*/ /* Center horizontally */
        max-width: 700px; /* Make images responsive */
        height: 360px; /* Maintain aspect ratio */
    }

/* Navigation buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 8px;
    color: white;
    font-weight: bold;
    font-size: 10px;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* Dots container styling */
/*.dots-container {
    text-align: center;
    position: absolute;
    bottom: 25px;
    width: 100%;
}*/

/* Dot styling */
/*.dot {
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    border: 2px solid white;
    transition: background-color 0.3s ease;
    cursor: pointer;
    width: 10px;
    height: 10px;
    background-color: grey;
}

    .dot:hover, .dot.active {
        background-color: green;
    }*/

/* Latest News styling */
.latest-news {
    position: relative;
    width: 100%; /* Ensure it fits container */
    max-width: 250px; /* Limit maximum width */
    height: 360px; /* Allow height to adjust based on content */
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 0 16px 0 rgb(215, 215, 215);
    border-color: darkgreen;
    /*margin-left: 20px;*/ /* Add padding for better spacing */
    box-sizing: border-box; /* Include padding in width calculations */
}

    .latest-news h3 {
        background-color: #d2d2d2;
        margin: 0;
        padding: 10px;
        text-align: center;
    }

/* News container styling */
.news-container {
    height:300px;
    position: relative;
    text-align: left;
    overflow: hidden;
    width: 100%; /* Ensure it takes full width */
}

.scrollable-container {
    height: auto; /* Set height for scrolling */
    position: relative; /* Use absolute positioning for scrolling */
    animation: scroll 30s linear infinite; /* Animation for scrolling */
    overflow: hidden; /* Hide overflow for the scrolling effect */
    width: 100%; /* Ensure it takes full width of the container */
}

.news-item {
    text-transform: uppercase; /* Make text uppercase */
    padding: 5px; /* Optional: add some padding */
    transition: background-color 0.3s ease; /* Smooth transition */
    font-size: 12px;
    font-family:'Times New Roman';
    /*font-weight: 800;*/
}

.news-container h4 {
    margin: 5px 0; /* Optional: Add margin for better spacing */
    transition: color 0.3s ease; /* Smooth transition for color change */
    text-decoration: underline;
}

.news-item:hover {
    background-color: #f0f0f0; /* Light grey background on hover */
    color: #000; /* Change text color on hover */
    cursor: pointer;
}

.news-item:last-child {
    border-bottom: none;
}

/* Blinking icon */
.blinking-icon {
    animation: blink-animation 1s steps(5, start) infinite; /* Modify duration as needed */
}

@keyframes blink-animation {
    0%, 100% {
        visibility: visible; /* Show icon at the start and end */
    }

    50% {
        visibility: hidden; /* Hide icon in the middle of the animation */
    }
}

/* Animation for scrolling news */
@keyframes scroll {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}
.image-slider-container {
    margin-left: 10px;
    height: 360px;
    width: 100%; /* Ensure the image fits the container's width */
    max-width: 250px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 16px 0 rgb(215, 215, 215);
}

.slide-item {
    position: absolute;
    width: 100%; /* Ensure the image fits the container's width */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s ease-in-out;
}

    .slide-item img {
        height: 360px;
        width: 100%; /* Ensure the image fits the container's width */
        max-width: 250px;
        /*object-fit: contain;*/
    }
/* Image magnifier container */
.img-magnifier-container {
    margin-left: 15px;
    position: relative;
    z-index: -1;
}

    .img-magnifier-container img {
        width: 100%; /* Ensure the image fits the container's width */
        max-width: 250px;
        height: 300px; /* Set the maximum height to prevent overflow */
        cursor: none;
    }

.img-magnifier-glass {
    position: absolute;
    border: 2px solid #000;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    cursor: none;
    display: none;
}

footer {
    background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);
    position: fixed;
    width: 100%;
    bottom: 0px;
    padding: 10px; /* Adjust padding for smaller height */
    font-size: 14px; /* Optionally reduce font size */
    z-index: 10000;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Align left and right sides */
    align-items: center;
    margin: 0 auto; /* Center the content horizontally */
}

.footer-left {
    text-align: left; /* Align text to the left */
    display: flex; /* Use flexbox for aligning the icon and text */
    align-items: center; /* Center icon and text vertically */
    color: white;
}

    .footer-left i {
        color: gold;
    }

.footer-right {
    margin-right:30px;
    text-align: right; /* Align text to the right */
    color: white;
}

    .footer-left p, .footer-right p {
        margin: 0; /* Remove default paragraph margin */
    }

    .footer-right a {
        text-decoration: none;
        color: gold; /* Link color */
    }

        .footer-right a:hover {
            text-decoration: underline;
        }

#footerText {
    margin-right: 30PX; /* Remove any default margin */
}

/* Social Icons Container */
.social-icons {
    display: flex;
    align-items: center; /* Aligns icons vertically */
    gap: 15px;
}

    .social-icons a {
        color: gold;
    }

/* Phone Number Alignment */
.phone-number {
    display: flex;
    align-items: center; /* Aligns icon and text */
    margin-right: 10px; /* Adds space between phone and next icons */
    color: white;
}
/* Styles for the header images */
.header-images {
    display: flex; /* Use flexbox for the images */
}

.image-container {
    text-align: center; /* Center-align the text below the images */
    margin-right: 20px; /* Space between images */
}
/* Styles for the image names */
.image-name {
    display: block; /* Make it a block element for better spacing */
    font-size: 12px; /* Font size for the caption */
}

.main-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    margin: 0 auto;
}

.carousel-container {
    top: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 45%;
    overflow: hidden;
    height: 100px;
    /*white-space: nowrap*/
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform; /* Helps with performance during animations */
}

.carousel-item {
    flex: 0 0 auto;
    width: 100px; /* Reduced item width */
    height: 70px;
    text-align: center;
    /*  border-left: 2px solid green;*/ /*Gold Border */
    /*  border-right: 2px solid green;*/ /*Gold Border*/
    margin-left: 10px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 5px 5px green;
}

    .carousel-item img {
        margin-left: 0;
        margin-top: 15px;
        width: 50px;
        height: 50px;
        object-fit: contain; /* Ensure images fit within the space */
    }

.carousel-prev,
.carousel-next {
    position: relative;
    top: -20px;
    background-color: transparent;
    font-size: 40px;
    /*  transform: translateY(-50%);*/
    /*background-color: green;*/ /* Gold Background */
    color: black;
    border: none;
    cursor: pointer;
    /*  border-radius: 50%;*/
    /*  transition: background-color 0.3s ease;*/
    /*  z-index: 10;*/
}

.prev-btn:hover, .next-btn:hover {
    background-color: #FFC107; /* Slightly darker gold on hover */
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

nav {
    display: block;
    text-align: center;
}

    nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

.nav a {
    display: block;
    /*background: #111;*/
    color: #fff;
    text-decoration: none;
    padding: 7px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    /*text-shadow: 0 -1px 0 #000;*/
    position: relative;
}

a {
}

.nav {
    background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);
    vertical-align: top;
    display: inline-block;
    box-shadow: 1px -1px -1px 1px #000, -1px 1px -1px 1px #fff, 0 0 6px 3px #fff;
    border-radius: 6px;
    float: left;
}

.active {
    float: right;
}

.nav li {
    position: relative;
    background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);
}

.nav > li {
    float: left;
    border: 1px #aaa solid;
    margin-right: 1px;
    padding-right: 10px;
}

.active {
    float: right;
}

.nav > li > a {
    /*margin-bottom: 1px;*/
    /*box-shadow: inset 0 2em .33em -.5em #555;*/
}

.nav > li:hover, .nav > li:hover > a {
    border-bottom-color: orange;
}

.nav li:hover > a {
    color: orange;
}

.nav > li:first-child {
    border-radius: 4px 0 0 4px;
}

    .nav > li:first-child > a {
        border-radius: 4px 0 0 0;
    }

.nav > li:last-child {
    border-radius: 0 0 4px 0;
    margin-right: 0;
}

    .nav > li:last-child > a {
        border-radius: 0 4px 0 0;
    }

.nav li li a {
    margin-top: 1px;
}



.nav li a:first-child:nth-last-child(2):before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    top: 50%;
    right: 1px;
}

/* submenu positioning*/
.nav ul {
    position: absolute;
    white-space: nowrap;
    /*border-bottom: 5px solid orange;*/
    z-index: 1000;
    left: -99999em;
    /*max-height: calc(100vh - 200px);*/ /* Adjust 50px to your footer height */
    /*overflow-y: auto;*/ /* Adds vertical scroll if content overflows */
}

.nav > li:hover > ul {
    left: auto;
    padding-top: 5px;
    min-width: 100%;
}

.nav > li li ul {
    border-left: 1px solid #fff;
    padding-bottom: 10px;
}


.nav > li li:hover > ul {
    /* margin-left: 1px */
    left: 100%;
    top: -1px;
}
/* arrow hover styling */
.nav > li > a:first-child:nth-last-child(2):before {
    border-top-color: blue;
    right: -10px;
}

.nav > li:hover > a:first-child:nth-last-child(2):before {
    border: 5px solid transparent;
    border-bottom-color: orange;
    margin-top: -5px;
}

.nav li li > a:first-child:nth-last-child(2):before {
    border-left-color: #aaa;
    margin-top: -5px;
}

.nav li li:hover > a:first-child:nth-last-child(2):before {
    border: 5px solid transparent;
    border-right-color: orange;
}

/* Responsive styles for larger screens */
@media (min-width: 1400px) {
    body {
        height: 100%;
        margin: 0;
        padding: 0;
        /*overflow-x: hidden;*/ /* Allows vertical scrolling */
        /*overflow-y: auto;*/ /* Allows Horizontal scrolling */
        width: 100%;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }
    .sign{
        width:100px;
    }
    .lang-btn {
    background-color: transparent;
    font-size:16px;
    border: none;
    color: white;
    /*padding: 5px 10px;*/
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure border doesn't affect the size */
}

    .lang-btn:hover {
        /*padding: 4px 9px;*/
        border: 1px solid white;
    }
    .user-login-btn {
        /*width:50px;*/
        height:50px;
        display: flex;
        justify-content:center;
        flex-direction: column; /* Stack the icon and text vertically */
        align-items: center; /* Center the content horizontally */
        /*background-color: green;*/ /* Button background color */
        /* background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);*/
        border-radius: 5px;
        padding: 5px 10px;
        border: none;
        cursor: pointer;
        font-size: 16px; /* Adjust the font size */
        /*margin-right: 20px;*/
    }

    #geoTitle {
        font-size: 18px; /* Adjust font size based on screen size */
    }


    .text-container h3 {
        margin: 5px;
        /* align-items: center;*/
        font-size: 24px;
        font-weight: bold;
        font-family: 'Noto Sans Kannada', sans-serif; /* Support for Kannada text */
    }

    /*.user-login-btn img {
        width: 40px;*/ /* Adjust the width as needed */
    /*object-fit:contain;
    }*/
    /*.main-content {
        display: flex;
        justify-content: space-between;*/ /* Space between sections */
    /*align-items: center;*/ /* Ensure all sections stretch to the same height */
    /*overflow: hidden;*/ /* Prevent overflow */
    /*padding: 20px;*/ /* Add padding for better spacing */
    /*}*/
    /* Sections (Left, Center, Right) */
    .left-align,
    .right-align {
        width:100%;
        max-width:400PX;
        height:600PX;
        flex: 1; /* Each side takes equal space */
        height: auto; /*Allow height to adjust based on content */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /*        padding: 10px;*/ /* Add padding for inner spacing */
        box-sizing: border-box; /*Include padding in width calculations */
        /*border: 2px solid green;*/
        margin-right: 10px;
    }

    .center-align {
        height:600PX;
        width:100%;
        max-width:1000px;
        flex: 3; /* Center is wider */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* padding-left: 10px;*/ /*Add padding for inner spacing */
        box-sizing: border-box; /* Include padding in width calculation*/
        /*margin-left:-60px;*/
    }

    /* Carousel Styling */
    .carousel {
        flex-grow: 1; /* Allow carousel to expand vertically */
        width: 100%; /* Make it responsive */
        max-width: 100%; /* Limit maximum width */
        height: 600px;
        position: relative;
        margin: 0; /* Center horizontally */
    }

    /* Inner Wrapper */
    .carousel-inner {
        display: block;
        transition: transform 0.9s ease-in-out;
    }

    /* Individual Slide */
    .carousel-item1 {
        flex-grow: 1; /* Allow carousel to expand vertically */
        width: 100%; /* Make it responsive */
        max-width: 100%; /* Limit maximum width */
        height: 500px;
        position: relative;
        margin: 0; /* Center horizontally */
    }


        /* Images */
        .carousel-item1 img {
            width: 100%; /* Make it responsive */
            position: relative;
            /*overflow: hidden;
          margin: 0;*/ /*Center horizontally */
            max-width: 100%; /* Make images responsive */
            height: 600px; /* Maintain aspect ratio */
        }

    /* Navigation Buttons */
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 8px;
        color: white;
        font-weight: bold;
        font-size: 10px;
        transition: background-color 0.3s ease;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.5);
        user-select: none;
        z-index: 10;
    }

    .prev {
        left: 0px;
    }

    .next {
        right: 0px;
    }

    /* Dots */
    /* .dots-container {
        text-align: center;
        position: absolute;
        bottom: 15px;
        width: 100%;
    }*/

    /* .dot {
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: inline-block;
        border: 2px solid white;
        transition: background-color 0.3s ease;
        cursor: pointer;
        width: 10px;
        height: 10px;
        background-color: grey;
    }*/

    /*.dot:hover, .dot.active {
            background-color: green;
        }*/

    .latest-news {
        /*margin:0;*/
        position: relative;
        width: 100%; /* Ensure it fits container */
        max-width: 400px; /* Limit maximum width */
        height: 600px; /* Allow height to adjust based on content */
        overflow: hidden;
        background-color: #ffffff;
        border-color: darkgreen;
        /*margin-left: 30px;*/ /* Add padding for better spacing */
        /*  margin-right: 10px; */ /* Add padding for better spacing */
        box-sizing: border-box; /* Include padding in width calculations */
    }

        .latest-news h3 {
            background-color: #d2d2d2;
            margin: 0;
            padding: 15px;
            text-align: center;
        }

    /* News container styling */
    .news-container {
        height: 100%;
        position: relative;
        text-align: left;
        overflow: hidden;
        width: 100%; /* Ensure it takes full width */
        width: 100%; /* Ensure it fits container */
        max-width: 400px; /* Limit maximum width */
        height: 600px; /* Allow height to adjust based on content */
    }

    .scrollable-container {
        height: 400PX; /* Set height for scrolling */
        position: relative; /* Use absolute positioning for scrolling */
        animation: scroll 60s linear infinite; /* Animation for scrolling */
        overflow: hidden; /* Hide overflow for the scrolling effect */
        width: 100%; /* Ensure it takes full width of the container */
    }
    /* Image magnifier container */
    .img-magnifier-container {
        margin: 0;
        position: relative;
        width: 100%; /* Ensure the image fits the container's width */
        max-width: 400px;
        height: 500px; /* Set the maximum height to prevent overflow */
        z-index: -10;
    }

        .img-magnifier-container img {
            width: 100%; /* Ensure the image fits the container's width */
            max-width: 400px;
            height: 500px; /* Set the maximum height to prevent overflow */
            cursor: none;
        }

    .img-magnifier-glass {
        position: absolute;
        border: 2px solid #000;
        border-radius: 50%;
        width: 200px;
        height: 200px;
        cursor: none;
        display: none;
    }

    .image-slider-container {
        height: 600px;
        width: 100%; /* Ensure the image fits the container's width */
        max-width: 400px;
        overflow: hidden;
        position: relative;
    }

    .slide-item {
        position: absolute;
        width: 100%; /* Ensure the image fits the container's width */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.8s ease-in-out;
    }

        .slide-item img {
            height: 600px;
            width: 100%; /* Ensure the image fits the container's width */
            max-width: 400px;
            /*object-fit: contain;*/
        }
    /* Header and green bar adjustments */
    .top-bar {
        width: 100%;
        position: relative;
        padding: 5px;
        font-size: 16px;
        text-align: center;
    }

    .Home {
        margin-right: 10px;
        border: none;
        cursor: pointer;
        background-color: transparent;
        height: 30px;
        width: 45px;
    }

    .header {
        width: 100%;
        top: auto;
        /*  padding: 10px;*/
        position: relative;
        justify-content: space-between;
    }

    .header-left {
        align-items: center;
        justify-content: center;
    }

    .header img {
        height: 70px;
    }

    .logo {
        align-items: center;
        justify-content: center;
    }

        .logo img {
            height: 100px;
        }

    .green-bar {
        position: relative;
        top: auto;
        width: 100%;
        padding: 15px;
        /*  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;*/
    }

    .navbar a {
        position: relative;
        display: block;
        color: white;
        font-size: 1rem;
        gap: 20px;
        text-decoration: none;
        text-transform: uppercase;
    }

    .main-carousel {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 200px;
    }

    .carousel-container {
        top: -20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 58%;
        overflow: hidden;
        height: 100%;
        /*white-space: nowrap*/
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        will-change: transform; /* Helps with performance during animations */
    }

    .carousel-item {
        position: relative;
        flex: 0 0 auto;
        width: 150px; /* Reduced item width */
        height: 100px;
        display: flex;
        justify-content: center;
        text-align: center;
        /*  border-left: 2px solid green;*/ /*Gold Border */
        /*  border-right: 2px solid green;*/ /*Gold Border*/
        margin-left: 10px;
        border-radius: 10px;
        background-color: white;
        box-shadow: 10px 10px lightgreen;
    }

        .carousel-item img {
            padding: 10px;
            width: 100px;
            height: 70px;
        }

    .carousel-prev,
    .carousel-next {
        position: relative;
        top: -20px;
        background-color: transparent;
        font-size: 40px;
        /*  transform: translateY(-50%);*/
        /*background-color: green;*/ /* Gold Background */
        color: black;
        border: none;
        cursor: pointer;
        /*  border-radius: 50%;*/
        /*  transition: background-color 0.3s ease;*/
        /*  z-index: 10;*/
    }

    .prev-btn:hover, .next-btn:hover {
        background-color: #FFC107; /* Slightly darker gold on hover */
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

    /* Larger footer padding */
    footer {
        width: 100%;
        bottom: 0;
        position: fixed;
        padding: 15px;
        font-size: 16px;
        margin-top: 20px;
        z-index: 10000;
    }

    #footerText {
        margin-right: 30PX; /* Remove any default margin */
    }

    .footer-container {
        display: flex;
        justify-content: space-between; /* Align left and right content */
        align-items: center;
    }

    nav {
        display: block;
        text-align: center;
    }

        nav ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

    .nav a {
        display: block;
        /*background: #111;*/
        color: #fff;
        text-decoration: none;
        padding: .8em 1.8em;
        text-transform: uppercase;
        font-size: 1rem;
        letter-spacing: 1px;
        /*text-shadow: 0 -1px 0 #000;*/
        position: relative;
    }

    .nav {
        background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);
        vertical-align: top;
        display: inline-block;
        box-shadow: 1px -1px -1px 1px #000, -1px 1px -1px 1px #fff, 0 0 6px 3px #fff;
        border-radius: 6px;
        float: left;
    }

    .active {
        float: right;
    }

    .nav li {
        position: relative;
        background: linear-gradient(to bottom, #ccff33 0%, #003300 100%);
    }

    .nav > li {
        float: left;
        border: 1px #aaa solid;
        margin-right: 1px;
    }

    .active {
        float: right;
    }

    .nav > li > a {
        /*margin-bottom: 1px;*/
        /*box-shadow: inset 0 2em .33em -.5em #555;*/
    }

    .nav > li:hover, .nav > li:hover > a {
        border-bottom-color: orange;
    }

    .nav li:hover > a {
        color: orange;
    }

    .nav > li:first-child {
        border-radius: 4px 0 0 4px;
    }

        .nav > li:first-child > a {
            border-radius: 4px 0 0 0;
        }

    .nav > li:last-child {
        border-radius: 0 0 4px 0;
        margin-right: 0;
    }

        .nav > li:last-child > a {
            border-radius: 0 4px 0 0;
        }

    .nav li li a {
        margin-top: 1px;
    }

    .nav li a:first-child:nth-last-child(2):before {
        content: "";
        position: absolute;
        height: 0;
        width: 0;
        border: 5px solid transparent;
        top: 50%;
        right: 5px;
    }
    /* submenu positioning*/
    .nav ul {
        position: absolute;
        white-space: nowrap;
        /*border-bottom: 5px solid orange;*/
        z-index: 1000;
        left: -99999em;
        /*max-height: calc(100vh - 350px);*/ /* Adjust 50px to your footer height */
        /*overflow-y: auto;*/ /* Adds vertical scroll if content overflows */
    }

    .nav > li:hover > ul {
        left: auto;
        padding-top: 5px;
        min-width: 100%;
    }

    .nav > li li ul {
        border-left: 1px solid #fff;
    }

    .nav > li li:hover > ul {
        /* margin-left: 1px */
        left: 100%;
        top: -1px;
    }
    /* arrow hover styling */
    .nav > li > a:first-child:nth-last-child(2):before {
        border-top-color: #aaa;
    }

    .nav > li:hover > a:first-child:nth-last-child(2):before {
        border: 5px solid transparent;
        border-bottom-color: orange;
        margin-top: -5px;
    }

    .nav li li > a:first-child:nth-last-child(2):before {
        border-left-color: #aaa;
        margin-top: -5px;
    }

    .nav li li:hover > a:first-child:nth-last-child(2):before {
        border: 5px solid transparent;
        border-right-color: orange;
        right: 10px;
    }
}
/* General responsiveness for smaller screens */
@media (max-width: 768px) {
    body {
        font-size: 0.9rem; /* Decrease font size for smaller screens */
        /*margin-bottom: 50px;*/ /* Add bottom margin to prevent footer overlap */
    }

    #geoTitle {
        font-size: 0.75rem; /* Adjust font size based on screen size */
    }


    .text-container h4 {
        margin: 5px;
        /* align-items: center;*/
        font-size: 0.75rem;
        font-weight: bold;
        font-family: 'Noto Sans Kannada', sans-serif; /* Support for Kannada text */
    }


    .main-content {
        flex-direction: column;
        align-items: center;
    }
   
    .left-align, .center-align, .right-align {
        width: 100%;
        max-width: 500px; /* Control maximum width for smaller screens */
        align-items: center;
        margin-bottom: 10px;
    }
    /* Carousel adjustments */
    .carousel {
      /*  height: 200px; optionale*/
        height: 200px;
        position: relative;
        width: 100%; /* Add margin below carousel to prevent overlap */
        max-width:400PX;
    }

    .carousel-inner img {
        left: 0;
        height: 200px; /* Set height for smaller screens */
        width: 100%;
    }
    /* Header and green bar adjustments */
    .top-bar, .header, .green-bar {
        top: auto;
        /*padding: 20px;*/
        position: relative;
        /*flex-direction: column;*/
        text-align: center;
        /*height: auto;*/ /* Make heights auto to avoid overlap */
        /*padding-bottom: 20px;*/ /* Add padding to avoid content touching the footer */
    }

    /* Magnifier container fix */
    .img-magnifier-container {
        margin: 0;
        padding: 0;
        top: auto; /* Add margin to avoid overlap with footer */
    }
    /* Carousel previous/next buttons */
    /*.carousel-prev, .carousel-next {
        font-size: 12px;
        padding: 5px;
    }*/
    /* Logo and images */
    .logo img {
        width: 80px;
    }

    .header-images img {
        width: 40px;
    }
    /* Button adjustments */
    .user-login-btn, .lang-btn, .search-btn {
        font-size: 12px;
        /*margin-bottom: 10px;*/ /* Add margin for spacing */
    }
    /* Footer adjustments */
    footer {
        bottom: 0;
        /*position: relative;*/
        font-size: 0.8rem;
        padding: 10px;
        z-index: 10000;
    }

    #footerText {
        margin-right: 20PX; /* Remove any default margin */
    }
    /* Prevent overlap of content with footer */
    .main-carousel {
        position: relative;
        width: 100%;
        height: 100px;
    }

    .carousel-container {
        height: 100%;
        width: 58%;
        position: relative;
        overflow: hidden;
    }

    .carousel-item {
        position: relative;
        width: 90px; /* Reduced item width */
        height: 60PX;
    }

        .carousel-item img {
            padding: -10px;
            width: 80px;
            height: 40px;
        }

    .carousel-prev,
    .carousel-next {
        position: relative;
        top: 15px;
        transform: translateY(-50%);
        background-color: transparent; /* Gold Background */
        color: black;
        border: none;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: background-color 0.3s ease;
        margin-left: 0;
    }


    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        left: 0;
    }
}

/*@media (max-width: 960px) {
    body {
        font-size: 0.9rem;*/ /* Decrease font size for smaller screens */
/*margin-bottom: 50px;*/ /* Add bottom margin to prevent footer overlap */
/*}

    .main-content {
        flex-direction: column;
        align-items: center;
    }

    .left-align, .center-align, .right-align {
        width: 100%;
        max-width: 500px;*/ /* Control maximum width for smaller screens */
/*align-items: center;
    }*/
/* Carousel adjustments */
/*.carousel {
        height: 200px;
        position: relative;
        width: 100%;*/ /* Add margin below carousel to prevent overlap */
/*}

    .carousel-inner img {
        left: 0;
        height: 200px;*/ /* Set height for smaller screens */
/*width: 100%;
    }*/
/* Header and green bar adjustments */
/*.top-bar, .header, .green-bar {
        top: auto;
        padding: 20px;
        position: relative;
        flex-direction: column;
        text-align: center;
        height: auto;*/ /* Make heights auto to avoid overlap */
/*padding-bottom: 20px;*/ /* Add padding to avoid content touching the footer */
/*}*/

/* Magnifier container fix */
/*.img-magnifier-container {
        margin: 0;
        padding: 0;
        top: auto;*/ /* Add margin to avoid overlap with footer */
/*}*/
/* Carousel previous/next buttons */
/*.carousel-prev, .carousel-next {
        font-size: 12px;
        padding: 5px;
    }*/
/* Logo and images */
/*.logo img {
        width: 80px;
    }

    .header-images img {
        width: 40px;
    }*/
/* Button adjustments */
/*.user-login-btn, .lang-btn, .search-btn {
        font-size: 12px;
        margin-bottom: 10px;*/ /* Add margin for spacing */
/*}*/
/* Footer adjustments */
/*footer {
        bottom: 0;
        position: relative;
        font-size: 0.8rem;
        padding: 10px;
        z-index: 1;
    }

    #footerText {
        margin-right: 20PX;*/ /* Remove any default margin */
/*}*/
/* Prevent overlap of content with footer */
/*.main-carousel {
        position: relative;
        width: 100%;
        height: 100px;
    }

    .carousel-container {
        height: 100%;
        width: 58%;
        position: relative;
        overflow: hidden;
    }

    .carousel-item {
        position: relative;
        width: 90px;*/ /* Reduced item width */
/*height: 60PX;
    }

        .carousel-item img {
            padding: -10px;
            width: 80px;
            height: 40px;
        }

    .carousel-prev,
    .carousel-next {
        position: relative;
        top: 15px;
        transform: translateY(-50%);
        background-color: transparent;*/ /* Gold Background */
/*color: black;
        border: none;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: background-color 0.3s ease;
        margin-left: 0;
    }


    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        left: 0;
    }
}*/

