/*
Theme Name: Super Default Theme
Theme URI:  http://example.com
Author:      Your Name
Author URI:  http://example.com
Description: A super default WordPress theme with reset CSS and latest hooks.
Version:     1.0
License:     GPLv2 or later
Text Domain: super-default
*/

/* ===== Reset CSS ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header & Navigation */
.navbar {
  display: flex;
  align-items: center;
  height: 60px;
  border-spacing: 0;
}
.navbar-section {
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: white;
  text-align: center;
}
.green {
  background-color: #28a745;
  color: #37b34a;
  width: 150px;
  flex-shrink: 0;
  padding: 10px 15px;
  font-size: 18px;
}
.blue {
  background-color: #0075b1;
  flex: 1;
  font-size: 18px;
}
.orange {
  background-color: #f6921e;
  flex: 2;
  display: flex;
  justify-content: space-evenly;
}
.contact {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 15px;
  text-align: left;
}
.fas {
  margin-right: 8px;
}
.nav-item {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  font-size: 18px;
  transition: color 0.3s;
}
.nav-item:hover {
  color: #ddd;
}
.branding img {
  width: 20vw;
}
.branding {
  margin-left: 200px;
  margin-top: 10px;
}
.submenu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  width: 100%;
}
.submenu-item {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}
.submenu-item:hover {
  color: #0075b1;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #FFF;
  z-index: 1001;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 12px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  z-index: 2000;
  overflow-y: auto;
}
.mobile-menu.open {
  left: 0;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #0075b1;
  color: #fff;
}
.mobile-menu-close {
  font-size: 24px;
  cursor: pointer;
}
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-item {
  border-bottom: 1px solid #eee;
}
.mobile-menu-item a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: background 0.3s;
}
.mobile-menu-item a:hover {
  background: #f4f4f4;
}
.mobile-menu-item.has-submenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: #f9f9f9;
}
.mobile-submenu.open {
  display: block;
}
.mobile-submenu li a {
  padding-left: 30px;
  font-weight: normal;
}

/* Carousel Styles */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.carousel-fade .carousel-item.active {
  opacity: 1;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 5px;
}
.carousel-item {
  height: 50vw;
}
.carousel-caption {
  bottom: 20vw !important;
}

/* Box Container Styles */
.box-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
}
.box {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 20px;
  color: white;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 250px;
}
.box h3 {
  margin: 0;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
.box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
/* Box Colors */
.box.blue {
  background-color: #0075b1;
}
.box.orange {
  background-color: #f6921e;
}
.box.green {
  background-color: #28a745;
}
.box.brown {
  background-color: #8b4513;
}
.box.gray {
  background-color: #6c757d;
}

/* Content Section Styles */
.content-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.content-section h1 {
  font-size: 36px;
  color: #6c757d;
  font-weight: bold;
  margin-bottom: 20px;
}
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.column {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  text-align: left;
}
.column p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}
.button-wrapper {
  text-align: center;
}
.btn {
  display: block;
  width: 100%;
  padding: 20px 25px !important;
  font-size: 20px;
  font-weight: bold !important;
  text-transform: uppercase;
  text-decoration: none;
  color: white !important;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
  margin-top: 15px;
  font-family: arial;
}
.btn.blue {
  background-color: #0075b1;
}
.btn.orange {
  background-color: #fd7e14;
}
.btn.blue:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.btn.orange:hover {
  background-color: #e56705;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.btn:active {
  transform: scale(0.98);
}

/* Circle Section Styles */
.circle-section {
  padding: 40px 0;
  background-color: #cecece;
}
.circle-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.circle-item {
  text-align: center;
  flex: 1;
  max-width: 400px;
}
.circle-image {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 10px solid transparent;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}
.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.circle-border-1 {
  border-color: #0075b1;
}
.circle-border-2 {
  border-color: #fd7e14;
}
.circle-border-3 {
  border-color: #28a745;
}
.circle-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}
.title-color-1 {
  color: #0075b1;
}
.title-color-2 {
  color: #fd7e14;
}
.title-color-3 {
  color: #28a745;
}
@media (max-width: 768px) {
  .circle-image {
    width: 400px;
    height: 400px;
  }
  .circle-title {
    font-size: 18px;
  }
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  /* Optionally hide desktop nav on mobile */
  .navbar, .submenu, .branding {
    display: none;
  }
}

/* CTA Section Styles */
.cta-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
}
.cta-section h2 {
  font-size: 32px;
  color: #6c757d;
  font-weight: bold;
  margin: 0;
}
.cta-link {
  text-decoration: underline;
  color: #6c757d;
  font-weight: bold;
  transition: color 0.3s;
}
.cta-link:hover {
  color: #0075b1;
}

/* Footer Styles */
.footer-section {
  background-color: #0075b1;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-section p {
  margin: 0;
  padding: 5px 0;
}



@media (max-width: 768px) {
	.navbar {padding:0;}
  .box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }
  .box {
    max-width: none;
    width: 100%;
  }
  .box.blue {
    grid-column: span 2;
  }
}


/* Mobile Styles Adjustments */
@media (max-width: 768px) {
  /* Keep branding visible, centered and larger on mobile */
  .branding {
    display: block;
    text-align: center;
    background: #fff;
    padding: 20px 0;
    margin: 0 auto;
  }
  .branding img {
    width: 50vw; /* Increased size for mobile */
    max-width: 300px;
  }
  
  /* Mobile Menu Toggle & Nav adjustments */
  .mobile-menu-toggle {
    display: block;
  }
  .navbar, .submenu {
    display: none;
  }
  
  /* Box container two columns with .box.blue spanning both columns */
  .box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }
  .box {
    max-width: none;
    width: 100%;
  }
  .box.blue {
    grid-column: span 2;
  }
  
  /* Circle section adjustments */
  .circle-image {
    width: 400px;
    height: 400px;
  }
  .circle-title {
    font-size: 18px;
  }
	
	.mobile-menu-toggle {
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #0075b1;
  z-index: 1000; /* Increased z-index so it appears on top */
}
	
	
}




.about-section {
    display: flex;
    flex-wrap: wrap;
   
    padding: 0;
   
    margin: 0 auto;
}

.about-content {
    flex: 2;
    
    padding-left: 50px;
}

.about-content h1 {
    font-size: 36px;
    color: #6c757d;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 24px;
    color: #0075b1;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
	overflow: hidden;
}

.half-circle {
    width: 35vw;
    height: 35vw;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #0075b1;
    position: relative;
    margin-right: -100px; /* Cut off the right side */
}

.half-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.services-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    border: 2px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: white;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 20px;
}

.service-link h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #111827;
}

.service-link p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}



.services-section {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.services-sidebar {
    width: 25%;
    background-color: #fff;
    padding: 20px;
    border-right: 2px solid #ddd;
    overflow-y: auto;
}

.services-sidebar h2 {
    font-size: 32px;
    color: #6c757d;
    margin-bottom: 20px;
	padding-left:20px;
		font-weight:bold;
	font-family:arial;
}

.services-sidebar ul {
    list-style: none;
    padding: 0;
}

.services-sidebar li {
    margin-bottom: 15px;
}

.services-sidebar a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s;
}

.services-sidebar a:hover,
.services-sidebar a.active {
    color: #37b34a;
	text-decoration:underline;
}

.services-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.service-content {
    display: none; /* Hide all content by default */
}

.service-content.active {
    display: block; /* Show active content */
}

.services-content h2 {
    font-size: 32px;
	font-weight:bold;
	font-family:arial;
    color: #28a745;
	
}

.services-content p,
.services-content ul {
    font-size: 16px;
    line-height: 1.6;
}

.services-content ul {
    padding-left: 20px;
}


/* styles.css */


.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;

}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    border-right: 1px solid #ddd;
}

.contact-info h2 {
    font-size: 28px;
    color: #6c757d;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-info ul li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info i {
    color: #fd7e14;
    margin-right: 10px;
}

.contact-info p {
    font-size: 14px;
    line-height: 1.6;
}

.contact-form {
    flex: 2;
    min-width: 400px;
}

.contact-form h2 {
    font-size: 28px;
    color: #6c757d;
    margin-bottom: 20px;
}

form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

form .form-group.full-width {
    flex: 100%; /* Full-width for textarea */
}

input, textarea {
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    resize: none;
}

.btn-submit {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%; /* Full-width button */
}

.btn-submit:hover {
    background-color: #e56705;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    form .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-info {
        border-right: none;
    }
}




