
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #000;
  padding: 12px;
}

.navbar1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 50px;
  padding: 15px;
}

.navbar1 .logo1 a {
  font-size: 20px;
  text-decoration: none;
  color: #999;
}

.navbar1 .links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.navbar1 .links a {
  font-weight: 500;
  text-decoration: none;
  color: #999;
  padding: 10px;
  transition: color 0.2s ease;
}

.navbar1 .links a:hover {
  color: #47b2e4;
}

#menu-toggle {
  display: none;
}

.hamburger-btn {
  display: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
}

.icon-close {
  display: none;
}

dl, ol, ul {
   
    margin-bottom: 1px !important;
}

.logo1 .subheading {
    font-size: 15px;
    color: #f9f1f1;
  }

  p {
    
    margin-bottom: 1px !important;
}

@media screen and (max-width: 1024px) {
  .navbar1 .logo1 a {
    font-size: 1.5rem;
  }

  .navbar1 .links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    padding-top: 20px;
  }

  #menu-toggle:checked ~ .links {
    left: 0;
  }

  .hamburger-btn {
    display: block;
  }

  #menu-toggle:checked ~ .hamburger-btn .icon-hamburger {
    display: none;
  }

  #menu-toggle:checked ~ .hamburger-btn .icon-close {
    display: block;
  }

  ol, ul {
    padding-left: 1px !important;
}
}

/* navbar code end here  */



/* HERO */
#hero {
    /* background: linear-gradient(rgba(var(--c-brand-rgb), 0.507), rgba(var(--c-brand-rgb), 0.438)), url(../images/hero-1.jpg); */
    background-position: center;
    background-size: cover;
}


#hero p {
    color: #dcdcdc;
    font-size: 1.2rem;
}

#hero h1 {
    background: linear-gradient(
      to right, #dc3545, #007bff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    font-weight: bold;
}

#about h1, p{
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}


/* SECTION TITLE */
.section-title {
    margin-bottom: 60px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}



/* SERVICE */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: rgba(var(--c-brand-rgb), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}


.service:hover::after {
    width: 100%;
    height: 100%;
    background: var(--c-brand);
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: 999;
}

.service:hover .iconbox {
    background-color: rgba(255,255,255,0.2);
    color: #999;
}

#services h1, p {
    color: var(--text-color);
}

/* COUNTER */
#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/counter.jpg);
    background-position: center;
    background-size: cover;
}



.gallery-section h2 {
	color: #333333;
	text-transform: uppercase;
	font-size: 1.6em;

}

.gallery-section .gallery-box {
	background: #000;
	padding: 15px;
	display: grid;
	grid-template-columns: repeat(4, auto);
	/*grid-template-rows: repeat(1, 18vw);*/
	grid-auto-rows: 16vw;
	grid-gap: 1rem;
	grid-auto-flow: dense;
}

.gallery-section .gallery-box .box {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	box-shadow: 0px 4px 20px -4px rgba(0, 0, 0, 0.15);
	transition: all .5s ease;
}

.gallery-section .gallery-box .box:hover {
	box-shadow: 0px 4px 40px -4px rgba(0, 0, 0, 0.3);
}

.gallery-section .gallery-box .box.big {
	grid-row: span 2;
	grid-column: span 2;
}

.gallery-section .gallery-box .box.horizontal {
	grid-column: span 2;
}

.gallery-section .gallery-box .box.vertical {
	grid-row: span 2;
}

.gallery-section .gallery-box .box img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: all .5s ease;
}

.gallery-section .gallery-box .box:hover img {
	transform: scale(1.2);
}

@media (max-width: 991px) {
	.gallery-section .gallery-box {
		grid-template-columns: repeat(4, auto);
		grid-auto-rows: 18vw;
	}
}

@media (max-width: 767px) {
	.gallery-section .gallery-box {
		grid-template-columns: repeat(3, auto);
	}
}

@media (max-width: 575px) {
	.gallery-section .gallery-box {
		grid-template-columns: repeat(2, auto);
		grid-auto-rows: 35vw;
	}
}



/* Contact Section */

  
#contact h2,
#contact p {
  margin-bottom: 20px;
}

#contact ul li {
  margin-bottom: 10px;
}

#contact ul li a {
  text-decoration: none;
  color: #007bff;
}

#contact ul li a:hover {
  text-decoration: underline;
}

#contact .social-links a {
  font-size: 20px;
  color: #999;
  transition: color 0.3s;
}

#contact .social-links a:hover {
  color: #007bff;
}

/* Form Styles */
#contact .form-label {
  color: #999;
}

#contact .form-control {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
  border-radius: 5px;
}

#contact .form-control::placeholder {
  color: #999;
}

#contact .btn {
  background-color: #007bff;
  border: none;
  border-radius: 5px;
}

#contact .btn:hover {
  background-color: #0056b3;
}




.fixed-contact-us {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background-color: #00c853;
    padding: 10px 0;
    z-index: 1000;
  }
  
  .fixed-contact-us .contact-item {
    color: #fff;
    text-align: center;
    text-decoration: none;
    flex: 1;
  }
  
  .fixed-contact-us .contact-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
  }
  

  .footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #47b2e4;
}

.footer .social-links a {
    margin-right: 10px;
    color: #999;
    font-size: 18px;
    transition: color 0.3s;
}

.footer .social-links a:hover {
    color: #47b2e4;
}



@media (max-width: 768px) {
    .row {
        --bs-gutter-x: 0 !important;
    }
}


