/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

/* Header Layout */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: white;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}

.logo-wrap img {
    max-height: 110px;
    height: auto;
    width: auto;
	margin-bottom:10px;
}

.contact-info {
    font-size: 0.9em;
    color: #fffff;
    margin-left: 20px;
	text-align: center;
}


/* Navigation Menu */
#sidenav {
    background-color: #000;
    overflow: hidden;
    text-align: center;
}

#navlist {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#navlist li {
    display: inline-block;
}

#navlist li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 40px;
    font-size: 14px;
    transition: background-color 0.3s;
}

#navlist .active a {
        font-weight: bold;
    }

#navlist .active hr {
	border: none;
	height: 2px;
	width: 60%;
	background-color: #FFCC33;
	margin: 0 auto 5px auto;
}




/* Alert Bar */
.alert-bar {
    background-color: #e0e9f8;
    color: #0645ad;
    padding: 8px;
    text-align: center;
    font-size: 16px;
}



/* Footer */
.footer {
      background-color: #000;
      color: #ccc;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }
.footer-navigation a {
    color: #ccc;
    text-decoration: none;
    margin: 0 30px;
}
.copyright{
    font-size: 12px;
}
.copyright a {
    color: #ccc;
}
.reg {
    font-size: 0.6em;
    vertical-align: super;
}


/* Products Page*/
.product-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

    .product-columns ul {
        list-style-type: none;
    }

    .product-columns h4 {
        margin-top: 2rem;
        font-weight: bold;
    }
/* Products Page*/
/* Services page  */
.service-column {
    flex: 1;
    min-width: 300px;
}

.services-list {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 40px;
    flex-wrap: wrap;
}

.service-column ul {
    padding-left: 10px;
    padding-bottom: 30px;
}

.service-column ul li {
    font-size: 14px;
}

.service-column ul li::marker {
    font-size: 10px;
}

/* Services page  */


/* Contact page  */
.title-container {
    margin-bottom: 20px;
}

.branches-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
}


.branch-box img {
    width: 15px;
    height: auto;
    vertical-align: middle;
    margin-right: 2px;
}

.branch-box {
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    min-width: 240px;
    padding: 0px 20px 20px 0;
    border-right: 1px solid #ccc;
}


.contact-branch {
    padding: 5px 20px 20px 31px !important
}

    .branch-box:last-child {
        border-right: none;
    }

.branch-title {
    font-weight: bold;
    font-size: 16px;
}

.contact-detail {
    margin: 5px 0;
}

    .contact-detail a {
        color: #0072ce;
        text-decoration: none;
        font-weight: 600;
    }

        .contact-detail a:hover {
            text-decoration: underline;
        }

.branches-title {
    padding-top: 10px;
}

.learn-more-btn {
    margin-top: 10px;
    padding: 6px 14px;
    font-size: 0.9em;
    border: 1px solid #000;
    background-color: #fff;
    cursor: pointer;
	display:none;
}

    .learn-more-btn a {
        text-decoration: none;
        color: #000;
    }

.service-branch {
    padding-top: 30px;
}

    .service-branch .branch-box {
        border-right: none;
    }

/* Responsive Layout */
@media (max-width: 1024px) {
    .branch-box {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .branch-box {
        flex: 1 1 100%;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #ccc;
        margin-bottom: 10px;
    }

    .branches-container {
        gap: 10px;
    }
    .contact-branch {
        padding: 5px 20px 20px 0px !important
    }
}
/* Contact page  */
/* image container  */
.image-container {
        display: flex;         
        justify-content: center;
        align-items: center;  
		padding-top:15px;
    }

    .centered-image {
        max-width: 100%;
        max-height: 100%; 
    }
/* main page container */
	.main-content {
      display: grid;
      grid-template-columns: 3fr 1fr;
      gap: 30px;
      margin-top: 30px;
    }
	
	.title-container{
	  max-width: 1200px;
      margin: auto;
      padding: 20px 80px 0px 80px;
	}
    
	.container {
      max-width: 1200px;
      margin: auto;
      padding: 10px 80px 0 80px;
    }

	/* sidebar */
    .sidebar {
      padding: 10px 20px 10px 20px;
      border: 1px solid gray;
    }
	.sidebar-application{
	  padding: 10px 20px 0px 20px;
	  margin-bottom:15px;
	  border: 1px solid gray;
	  border-top: none;
	}
	
	.sidebar-application a {
      color: #0066cc;
	  font-size:15px;
	  text-decoration:none;
      font-weight: 550;
    }
	
	.main-content h2 {
        margin-bottom: 15px;
    }

    .main-content p {
        margin-bottom: 20px;
    }
	

    .sidebar h3 {
      margin-top: 0;
	  padding-bottom:5px;
    }

    .sidebar ul {
      list-style: none;
      padding-left: 0;
    }
	
	.sidebar-application h4{
		padding-bottom:5px;
	}

    .sidebar li {
      margin-bottom: 10px;
      font-size: 0.9em;
    }

    .sidebar a {
      color: #0066cc;
	  font-size:15px;
	  text-decoration:none;
      font-weight: 550;
    }
	
	.sidebar .sidebar-title {
      color: #333 !important;
	  font-size:15px;
	  text-decoration:none;
      font-weight: 550;
    }

    .sidebar .phone {
      color: #333;
      display: block;
      margin-top: 2px;
    }
	
	.sidebar .contact img{
		width:15px;
		height:auto;
		vertical-align: middle; 
		margin-right:2px;
	}
	
	.sidebar .contact p {
	  border-bottom: 1px solid #ddd;
	  padding-bottom: 10px;
	  margin-bottom: 10px; 
	}
	
	.sidebar .contact span {
	  color:#555; 
	}

@media (max-width: 768px) {
      .main-content {
        grid-template-columns: 1fr;
      }
	  .container{
		  padding:10px 30px 0 30px;
	  }
	  .title-container{
		  padding:20px 30px 0px 30px
	  }
	  .sidebar-container{
		  padding:0px 30px 0px 30px
	  }
	  .header-top{
		  padding:10px 30px 0px 80px
	  }
	  
    }

