body {
  /*min-height: 2000px;
  padding-top: 70px;*/
}

#navbar {
  position: fixed;
  top: 0;
  right: 0; /* Align to the right */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align items from the start */
  height: 50px; /* Adjust based on your design */
  width: 100%; /* Ensure full width */
  z-index: 1000;
  background-color: whitesmoke;
  box-shadow: 0 2px 5px rgba(233, 13, 13, 0.1); /* Optional shadow for better visibility */
  padding-right: 20px; /* Add spacing on the right */
  padding-left: 70px; /* Move content further from the left */
}

/* Style for the logo/image */
.navbar-brand img {
  
  height: 50px; /* Adjust height of the logo */
  margin-right: 30px; /* Add spacing between the logo and the navigation links */
}

/* Navbar links */
.navbar-collapse ul.nav {
  display: flex;
  list-style: none;
  margin: 30;
  padding: 3;
  gap: 65px; /* Space between navigation items */
}

/* Default Link Style */
.navbar-collapse ul.nav li a {
  text-decoration: none;
  color: #000; /* Default link color (black) */
  font-size: 16px; /* Adjust font size */
  padding: 10px 15px; /* Add padding around links */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Active Link Style (Clicked) */
.nav li.active {
  background-color: #0e2160; /* Background color for the active item */
  border-radius: 5px; /* Optional: Rounded corners */
}

/* Style for the active <a> inside the active <li> */
.nav li.active a {
  color: #fff !important; /* White text for the active link */
}

/* Dropdown Styles */
/* below code services drop down menu*/

.services-dropdown {
    position: relative; /* Position relative for dropdown */
}

.services-dropdown .dropdown-menu {
    display: none; /* Hide the dropdown menu by default */
    position: absolute;
    top: calc(100% + 5px); /* Position below the toggle with some spacing */
    left: 0;
    background-color: white; /* Set background color to white */
    padding: 0;
    z-index: 1000; /* Ensure it appears above other elements */
    min-width: auto; /* Consistent width, adjust as needed */
    border: 1px solid #ddd; /* Light border for distinction */
}

.services-dropdown .dropdown-menu li {
    padding: 10px; /* Add padding to menu items */
}

.services-dropdown .dropdown-menu li a {
    text-decoration: none; /* Remove underline */
    color: black; /* Black text color */
    font-size: 14px; /* Font size for menu items */
    display: block; /* Ensure the entire menu item is clickable */
}

.services-dropdown .dropdown-menu li a:hover {
    background-color: #f2f2f2; /* Light gray on hover */
}

/* Show dropdown on hover, regardless of current page */
.services-dropdown:hover .dropdown-menu {
    display: block; /* Show the dropdown menu on hover */
}


.panel-title {
  cursor: pointer; /* Change cursor to pointer for clickable area */
}

.panel-body {
  padding: 15px; /* Add some padding for better readability */
}


/*=========================================
	Our Works
==========================================*/

#works ul{}
#works ul li{ list-style:none; display:inline;}
#works ul li a img{
	border: 1px solid #C2C2C2;
    margin: 0;
    padding: 1px;
}
body > section, .works {
    padding: 0px 0;
}
.devider {
    margin-top: 0px;
}
.devider i {
    color: #cccccc;
}
.sec-sub-title {
    margin: 35px 0 45px;
}
.sec-sub-title p {
    color: #5b646e;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
a.fancybox i{ color:#FFF;}
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */

    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

.work-filter {
  margin-bottom: 35px;
}

.work-filter ul li {
    display: inline-block;
}

.work-filter ul li a {
  color: #062033;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 17px;
  border-radius: 6px;
  text-transform: capitalize;
}

.work-filter ul li a:hover,
.work-filter ul li a.current {
  background-color: #0eb493;
  border-radius: 6px;
  color: #fff;
  padding: 5px 17px;
}

.work-item {
  float: left;
  width: 25%;
  position: relative;
}

.work-item > img {
  display: block;
  height: auto;
  width: 100%;
}

.overlay {
	background-color: rgba(14,180,147,.9);
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	
	opacity: 0;
	filter: alpha(opacity=0);
	
	-webkit-transition: all 450ms ease-out 0s;	
	   -moz-transition: all 450ms ease-out 0s;
		 -o-transition: all 450ms ease-out 0s;
		    transition: all 450ms ease-out 0s;
		  
	-webkit-transform: rotateY(180deg) scale(0.5,0.5);
	   -moz-transform: rotateY(180deg) scale(0.5,0.5);
		-ms-transform: rotateY(180deg) scale(0.5,0.5);
		 -o-transform: rotateY(180deg) scale(0.5,0.5);
			transform: rotateY(180deg) scale(0.5,0.5);
}

.work-item:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
	
	-webkit-transform: rotateY(0deg) scale(1,1);
	   -moz-transform: rotateY(0deg) scale(1,1);
		-ms-transform: rotateY(0deg) scale(1,1);
		 -o-transform: rotateY(0deg) scale(1,1);
		    transform: rotateY(0deg) scale(1,1);
}

.work-item .overlay a {
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin-top: 20%;
  padding: 7px 10px;
}

.work-item .overlay a:hover {
  color: #fff;
}

.work-item .overlay h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin: 25px 0 8px;
}

.work-item .overlay p {
  font-size: 14px;
  line-height: 24px;
}


/*this is contact details of mahesh and amol*/
/*this is new updated css */






/*=========================================
	Our Team Member
==========================================*/

.container {
  font-family: 'raleway';
}
.panel-body.custom-layout {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.panel-body.custom-layout img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
  border: 6px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ff6f61, #6b92f2) border-box;
}
.panel-body.custom-layout .description {
  flex: 1;
  color: black;
}
.panel-body.custom-layout .description p {
  margin: 0;
}
.panel-body.custom-layout .description p.title {
  font-weight: bold;
  font-size: 24px;
}






/*     below  code new footer updated footer css code */

.footer {
  background-color: #000; /* Black background */
  color: #e6e6e6; /* Smoke color text */
  padding: 10px 0; /* Top and bottom padding only */
}

#maxim-title {
  color: #fff; /* White color for main heading */
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center; /* Center-align the heading */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 4px 40px; /* Equal left and right padding for inner content */
}

.footer-column {
  flex: 1 1 18%; /* Five columns with equal width */
  min-width: 200px; /* Ensure columns don't shrink too much */
}

.footer-column .segment-title {
  color: #e6e6e6; /* White color for section titles */
  font-weight: bold;
  margin-bottom: 6px; /* this is gap between heading and text of first row */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.footer-column ul li {
  margin-bottom: 6pt; /* here we change gap betwwen line of li*/
  color: #a2a2a2; /* Smoke color for list items */
  
  
}
.footer-column ul li b {
  color: #d1d1d1; /* Brighter color for more emphasis */
  font-weight: bold; /* Bold text */
  
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}


.contact-link,
.phone-link {
  color: #ccc; /* Smoke color for links */
  text-decoration: none;
}

.contact-link:hover,
.phone-link:hover {
  color: #fff; /* White color on hover */
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 0 20px; /* Reduce padding for smaller screens */
      /* below width: 80vw for responseive i updated we delete also */
      width: 80vw;
  }

  .footer-column {
      flex: 1 1 100%; /* Full width for small screens */
  }
}
/*     above  code new footer updated footer css code */




/* General Container */
/* service new updated css */
/*
#maxim-overview-container {
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
}
*/

/* Title Section */
/*
#maxim-title {
  text-align: center;
  color: #003366;
  font-size: 1.8em;
  margin-bottom: 10px;
}

#maxim-description {
  text-align: justify;
  font-size: 0.95em;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #444;
}
*/

/* Header Row */
/*
#header-row {
  display: flex;
  background-color: #22088c;
  color: white;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}
*/


/*
.header-column[data-type="segment"],
.header-column[data-type="service"] {
  flex: 1;
}
*/

/* Segment Container */
/*
#segments-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
*/

/* Individual Segment Boxes */
/*
.segment-box {
  flex: 1 1 calc(25% - 20px);
  min-width: 250px;
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
*/

/* Segment Titles */
/*
.segment-title {
  
  color: black;
  font-weight: bold;
  
  padding: 8px 0;
  border-radius: 5px 5px 0 0;
  font-size: 1em;
}
*/

/* Segment Content (Lists) */
/*
.segment-box ul {
  margin-top: 10px;
  list-style-type: disc;
  margin-left: 20px;
}

.segment-box ul li {
  margin: 5px 0;
  font-size: 0.9em;
}
*/

/* Attribute-Based Styling for Specific Segments */



/* Responsive Styling */
/*
@media (max-width: 768px) {
  #segments-container {
      flex-direction: column;
  }

  .segment-box {
      min-width: 100%;
  }
}
*/



/* Reset and Base Styles */
/* contact details */
/* contactUS CSS code */



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

/* Contact Us Container */
#contact-us-container {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Header */
#contact-header {
  background-color: #003366;
  color: #fff;
  padding: 15px;
  border-radius: 10px 10px 0 0;
  position: relative;
}

#contact-header h1 {
  margin: 0;
  font-size: 1.8em;
}

#contact-icon {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 30px;
  height: 30px;
}

/* Content Section */
#contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

/* Registered Office and Delivery Centers */
#registered-office,
#delivery-centers {
  flex: 1;
  padding: 10px;
  line-height: 1.6;
  
}

.section-title {
  color: #b71c1c;
  font-size: 1.6em;
  margin-bottom: 10px;
  text-align: justify;
}

#office-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

#office-image img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border: 5px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
#contact-footer {
  border-top: 1px solid #ccc;
  padding: 10px 0;
  font-size: 1.6em;
  color: #003366;
}

#contact-footer p {
  margin: 5px 0;
}

.contact-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  #contact-content {
      flex-direction: column;
      align-items: center;
  }

  #registered-office,
  #delivery-centers {
      text-align: center;
  }

  #office-image {
      margin: 20px 0;
  }
}

/* Registered Office and Delivery Centers */
#registered-office p, 
#delivery-centers p {
  text-align: justify; /* Justify text for a clean alignment */
  color: #1a1a1a; /* Neutral dark gray for better readability */
  margin: 5px 0; /* Compact spacing between lines */
  font-size: 16px; /* Slightly smaller font size for compactness */
  line-height: 1; /* Adjust line spacing for better readability */
  font-family: 'Arial', sans-serif; /* Use a clean and professional font */
}

