/* ===== Original Base Styles (Preserved) ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    background-color: #333;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 10px 20px;
    font-size: 25px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

main {
    max-width: 1366px;
    margin: 20px auto;
    padding: 20px;
}

article {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding: 20px;
}

/* ===== Modern Enhancements ===== */

/* Hamburger button */
.menu-toggle {
    display: none;
    background-color: #333;
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 12px;
    width: 100%;
    cursor: pointer;
}

/* Smooth hover */
nav a:hover {
    color: #ffd700;
}

/* ===== Mobile Styles ===== */
@media (max-width: 600px) {

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
    }

    nav ul.show {
        display: block;
    }

    nav ul li {
        display: block;
        font-size: 18px;
        margin: 10px 0;
    }

    main {
        padding: 10px;
    }

    article {
        padding: 15px;
    }
}

/* ===== Tablet Styles ===== */
@media (min-width: 601px) and (max-width: 900px) {

    nav ul li {
        font-size: 20px;
        margin: 10px;
    }

    main {
        padding: 15px;
    }
}

/* Responsive Images */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.custom-link img {
    width: auto;
    max-width: none;
}
 /* Table */

.table-container {
    width: 100%;
    overflow-x: auto;
}

/* ===== TABLE  DETAILS TABLE ===== */
.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table th,
.details-table td {
    border: 1px solid #000;
    padding: 10px;
    text-align: left;
}

/* TH styling */
.details-table th {
    background-color: #f2f2f2;
    text-align: left;
    font-weight: bold;
    color: #000;
}

/* TD styling */
.details-table td {
    background-color: #fff;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 600px) {
    .details-table,
    .details-table tbody,
    .details-table tr,
    .details-table th,
    .details-table td {
        display: block;
        width: 100%;
    }

    .details-table tr {
        margin-bottom: 12px;
    }

    .details-table th {
        background: #e6e6e6;
        border-bottom: none;
    }
}

/* Main Link */
.custom-link {
    color: orange; 
    text-decoration: none; 
}

/* Read more logic */

#read-toggle {
    display: none;
}

.inline-more {
    display: none;
}

.read-more-inline,
.read-less-inline {
    cursor: pointer;
    margin-left: 4px;
}

/* toggle */
#read-toggle:checked ~ .inline-more {
    display: inline;
}

#read-toggle:checked ~ .read-more-inline {
    display: none;
}

#read-toggle:checked ~ .dots {
    display: none;
}
/* read more end*/

/* Boxes*/

.services-container {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.service-box {
  flex: 1;
  min-width: 200px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 14px;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.service-box h3 {
  margin-bottom: 10px;
  color: #333;
}

.service-box p {
  color: #555;
  margin-bottom: 12px;
}

.box-link-btn {
  display: inline-block;
  padding: 7px 14px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

.box-link-btn:hover {
  background: #FFA500;
}

/* Bos end */

.custom-link:hover {
    color: #0093AF; 
    
}

/* Text link */

.custom-link2 {
    color: white; 
    text-decoration: none; 
}

.custom-link2:hover {
    color: #2D68C4; 

}

/*Line Space */

.line-spaced {
    line-height: 2; 
}
p {
	font-size:20px;
}

h2 {
	color:#800000;
	font-size:30px;
}
h3 {
	color: #0047AB;
	font-size:25px;
}
h4
{
	font-size:23px;
}

li {
	font-size:20px;
}
	
footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            /*padding: 1px; */
            position: relative;
            width: 100%; 
			padding: 10px;
					
        }
	
/*back Button */

.back-button {
            padding: 10px 20px;
            background-color: #333;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            border-radius: 5px;
        }

        /* Hover effect */
        .back-button:hover {
            background-color: #333;
			color: orange;
        }
		
/* Next  button */
.next-button {
    text-align: right;
    margin: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #333;
}
/* Previous  button */
.previous-button {
    text-align: left;
    margin: 1px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #333;
}
/* Scroll to Top button */
.scroll-to-top-button {
    display: none; 
    position: fixed;
    bottom: 150px;
    right: 100px;
    background-color: #90EE90;
    color: #FFF;
    border: none;
    border-radius: 5px; 
    padding: 10px 20px; 
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s; 
}

.scroll-to-top-button:hover {

    background-color: #008000; 

	/*YouTube Video* /
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

