* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Gotham-Thin';
    src: url('/fonts/Gotham/Gotham-Thin.otf');
    font-weight: 100;
}

@font-face {
    font-family: 'Gotham-Light';
    src: url('/fonts/Gotham/Gotham-Light.otf');
    font-weight: 200;
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url('/fonts/Gotham/Gotham-Medium.otf');
    font-weight: 300;
}

@font-face {
    font-family: 'Gotham-Ultra';
    src: url('/fonts/Gotham/Gotham-Ultra.otf');
    font-weight: 800;
}

@font-face {
    font-family: 'Gotham-Black';
    src: url('/fonts/Gotham/Gotham-Ultra.otf');
    font-weight: 500;
}
#content {
    transition: opacity 0.3s ease-in-out;
}

/* General styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 0;
}

.logo {
  width: 6rem;
  height: auto;
}

.menu {
  display: flex;
  gap: 3rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Gotham-Light', Arial, sans-serif;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #ddd;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.burger span {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ANIMATION FOR X ICON */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Mobile styles */
@media (max-width: 768px) {
    .about_sec h2,.premium_service h2,.portfolio_sec h2,.testimonial_sec h2,.why_trust h2,.dream_sec h4,.faq_sec h4,.contact-section h4{
        font-size: 1.5rem !important;
    }
    
    .dream_sec p{
        max-width: 100% !important;
    }
    
    .contact_btn{
            flex-direction: column !important;
    }
    
    .faq_sec .accordion{
        max-width: 100% !important;
    }
    
    .menu {
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 9;
    gap: 1rem;
    text-align: center;
  }

  .menu.show {
    max-height: 45rem; N Enough space for all links 
  }

  .menu a {
    padding: 1rem;
    border-top: 1px solid #222;
    text-align: center;
  }

  .burger {
    display: flex;
  }
  
  .mySwiper img{
      width: 100%;
      height: auto;
      object-fit: contain;
  }
}

.container {
    max-width: 1026px;
}

body {
    background: #000 !important;
}

.footer {
    display: flex;
    align-items: center;
    margin: 5rem 10rem;
}

.footer h2 {
    font-size: 2rem;
    font-family: 'Gotham-Ultra';
    letter-spacing: 2px;
    width: 99%;
    color: #fff;
}

.footer p {
    margin-bottom: 5px;
    color: #fff;
    font-family: 'Gotham-Light';
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer .social-icons {
    margin: 15px 0;
    color: #fff;
}

.footer .social-icons i {
    font-size: 24px;
    margin: 0 10px;
    cursor: pointer;
}

.about p {
    color: #fff;
    font-family: 'Gotham-Thin';
    font-size: 1.2rem;
}

.about {
    padding: 3rem 4rem;
}

.project img {
    width: 20rem;
    height: 20rem;
    margin-bottom: 2rem;
}

.project h2, .service h2{
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    font-family: 'Gotham-Light';
}

.project-item {
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.image-wrapper:hover img {
    opacity: 0.5;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.image-wrapper:hover .overlay {
    opacity: 1;
}

.image-wrapper .overlay p{
    font-family: 'Gotham-Light';
    text-transform: capitalize;
    font-size: 0.9rem;
}

.contact-section h3,
.contact-section h4 {
    color: #fff;
    font-family: 'Gotham-Light';
    font-size: 1.3rem;
}

form {
    display: flex;
    flex-direction: column;
    border: 1px solid #fff;
    margin-top: 1.5rem !important;
    padding: 1rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    color: #fff;
    font-family: 'Gotham-Light';
}

input::placeholder,
textarea::placeholder {
    font-size: 0.8rem;
    font-family: 'Gotham-Light';
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    background: #fafafa;
}

textarea {
    resize: none;
    height: 12rem;
}

input[type="checkbox"] {
    margin-right: 10px;
}

.submit-btn {
    align-self: flex-end;
    padding: 10px 20px;
    background: #FFF;
    color: #222;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
}

.submit-btn:hover {
    background: #333;
    color: #fff;
}

address{
    color: #fff;
    font-family: 'Gotham-Light';
}

.call{
    color: #fff;
    font-family: 'Gotham-Light';
    text-decoration: none;
}

.service h4{
    font-family: 'Gotham-Medium';
    font-size: 1.4rem;
    color: #fff;
    margin-top: 1rem;
}

.service p{
    color: #fff;
    font-family: 'Gotham-Light';
}

.swiper-pagination-bullet-active{
    background: #FFF;
}

.swiper-button-prev, .swiper-button-next{
    color: #fff;   
}

.swiper-button-prev:after, .swiper-button-next:after{
    font-size: 2rem;
}

.about h2{
	font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
}

/*landing-page*/
.hero-section {
    background: url('/images/banner/mohan-monz-banner.png') no-repeat center center/cover;
    padding: 100px 0;
    font-family: "Readex Pro";
    color: #fff;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* adjust the alpha for tint strength */
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}

.hero-text {
    flex: 1 1 50%;
}

.hero-text h1 {
    font-size: 4rem;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text h1 strong {
    color: #ebc55c;
}

.subheadline {
    margin: 1rem 0 2rem;
    font-size: 1.2rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .call-btn {
    background-color: #ebc55c !important;
    color: #000;
}

.call-btn:hover {
    background-color: #ebc55c;
}

.hero-buttons .view-btn {
    background-color: transparent;
    border: 2px solid #ebc55c !important;
    color: #edc42d;
}

.view-btn:hover {
    background-color: #edc42d;
    color: #000;
}

.hero-form {
    flex: 1 1 40%;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 30px;
    border-radius: 12px;
}

.hero-form form{
	all: unset;
}

.consultation-form h3 {
    margin-bottom: 20px;
    color: #ebc55c;
    font-size: 1.5rem;
	font-family: "Readex Pro";
}

.consultation-form .form-row {
    display: flex;
    gap: 15px;
}

.consultation-form .form-group {
    margin-bottom: 1rem;
    width: 100%;
}

.consultation-form .form-group.half {
    flex: 1;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
	font-family: "Readex Pro";
}

.consultation-form select option {
    background-color: #1a1a1a;
}

.consultation-form textarea {
    resize: vertical;
}

.hero-form .submit-btn {
    background-color: #ebc55c;
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-form .submit-btn:hover {
    background-color: #eab308;
}

.hero-form .submit-btn i {
    margin-right: 8px;
}
	.deskOnly{
		display: block;
	}
	.mblOnly{
	display: none;
	}

/* Responsive */
    @media (max-width: 768px) {
	.deskOnly{
		display: none;
	}
	.mblOnly{
	display: block;
	}

    .hero-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .form-row, .service_list {
        flex-direction: column;
    }
	
	.footer {
    flex-direction: column;
	align-items: left;
    margin: 3rem 2rem;
	}
		
}

.icon-circle {
    width: 5rem;
    height: 5rem;
    background-color: #3c2f15;
    color: #ebc55c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.7rem;
    margin-bottom: 1rem;
}

.content_stats h3 {
    color: #ebc55c;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
	font-family: "Readex Pro";
}

.content_stats p {
    color: #d1d5db;
    font-size: 1rem;
    font-weight: 500;
	font-family: "Readex Pro";
}

.about_sec {
    background: #14161a;
    padding: 3rem 0;
}

.about_sec h2, .about_sec h4{
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
	font-family: "Readex Pro";
}

.about_sec p, .about_sec li {
    margin-top: 1.5rem;
    color: #d1d5db;
    font-weight: 300;
    font-size: 1rem;
	font-family: "Readex Pro";
}

.yellow {
    color: #ebc55c;
}

.why_trust {
    background: #14161a;
    padding: 3rem 0;
}

.why_trust h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
}

.why_trust h6 {
    color: #ebc55c;
    font-size: 1.2rem;
	font-family: "Readex Pro";
}

.why_trust p {
    color: #fff;
	font-family: "Readex Pro";
}

.premium_service {
    background: #000;
    padding: 3rem 0;
}

.service_list{
	display: flex;
	margin-top: 3rem;
	gap: 1rem;	
}

.premium_service h2,
.portfolio_sec h2,
.testimonial_sec h2,
.why_trust h2,
.dream_sec h4,
.faq_sec h4,
.contact-section h4
 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
	font-family: "Readex Pro";
}

.premium_service p {
    max-width: 54rem;
    text-align: center;
    margin: 0 auto;
    color: #999999;
    font-weight: 400;
	font-family: "Readex Pro";
}

.premium_service .bi {
    font-size: 2rem;
    color: #ebc55c;
    background: #232015;
    padding: 0.5rem;
    border-radius: 50%;
}

.premium_service h6 {
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: -1px;
	font-family: "Readex Pro";
}

.service-icon {
    background: #0d0d0d;
    padding: 2rem 1rem;
    border: solid;
    border-radius: 10px;
}

.portfolio_sec {
    padding: 3rem 0;
    background: #262626;
}

.portfolio_sec p,
.testimonial_sec p,
.faq_sec p,
.contact-section p {
    color: #999999;
    margin: 0 auto;
    max-width: 50rem;
    font-weight: 400;
	font-family: "Readex Pro";
}

.portfolio_sec img {
    border-radius: 0.7rem;
}

.testimonial-card {
    background-color: #111114;
    border: 1px solid #292930;
    border-radius: 15px;
    padding: 30px;
    position: relative; 
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.quote-icon {
    color: #f5c518;
    font-size: 2rem;
}

.stars {
    color: #f5c518;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px;
    min-height: 12rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-info img {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #f5c518;
}

.customer-name {
    font-weight: 600;
    color: #f5c518;
}

.location {
    color: #b0b0b0;
    margin-top: -4px;
}

.testimonial_sec {
    background: #14161a;
    padding: 3rem 0;
}

.contact_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dream_sec {
    background: linear-gradient(to right, #3e3826, #2c2921);
    padding: 3rem 0;
}

.dream_sec p {
    color: #999999;
    font-weight: 400;
    margin: 1rem auto;
    max-width: 65%;
    font-size: 1.3rem;
	font-family: "Readex Pro";
}

.contact_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.contact_btn a:nth-of-type(1) {
    padding: 0.7rem 2rem;
    color: #222;
    background: #ebc55c;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
	text-decoration: none;
}

.contact_btn .bi {
    padding-right: 1rem;
}

.contact_btn a:nth-of-type(2) {
    border: 2px solid #ebc55c;
    padding: 0.7rem 2rem;
    color: #ebc55c;
    background: #222;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
	text-decoration: none;
}

.dream_sec p:nth-of-type(2) {
    color: #fff;
    font-weight: 400;
}

.faq_sec {
    background: #14161a;
    padding: 3rem 0;
}

.faq_sec .accordion {
    max-width: 70%;
    margin: 2rem auto 0;
	font-family: "Readex Pro";
}
.faq_sec .accordion p{
    font-weight: 300;
	font-family: "Readex Pro";
}

.faq_sec .accordion-item {
    background-color: #111114;
    border: 1px solid #292930;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq_sec .accordion-button {
    background-color: transparent;
    color: #ebc55c;
    font-weight: 600;
    box-shadow: none;
}

.faq_sec .accordion-button::after {
    filter: brightness(1.5);
}

.faq_sec .accordion-button:not(.collapsed) {
    background-color: #1a1a1d;
    color: #ebc55c;
    padding: 1.5rem 1rem;
}

.faq_sec .accordion-body p {
    color: #e0e0e0;
    text-align: left;
	font-family: "Readex Pro";
}

.faq_sec .accordion-button:focus {
    border-bottom: 1px solid #ebc55c;
    box-shadow: unset;
}

.contact-section {
  background-color: #000;
  color: #fff;
  padding: 3rem 0;
}

.contact-cards {
  margin-top: 40px;
}

.contact-card {
  background-color: #111;
  padding: 2rem 1.2rem;
  border-radius: 10px;
  height: 100%;
	font-family: "Readex Pro";
}

.icon-circle {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  background-color: #26231e;
  color: #f6c344;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
}

.contact-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.contact-card p {
  margin: 0;
  color: #aaa;
}

.social-icons {
  margin-top: 1.2rem;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  background-color: transparent;
  border: 1px solid #f6c344;
  color: #f6c344;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: "Readex Pro";
  line-height: 40px;
  text-align: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #f6c344;
  color: #000;
  font-family: "Readex Pro";
}

.thank-you-message{
	margin: 2rem 0;
	text-align: center;
	align-items: center;
}
.thank-you-message h1{
	font-weight: 800;
	font-size: 4rem;
	color: #fff;
}
.thank-you-message h2{
	font-weight: 500;
	font-size: 2rem;
	color: #fff;container
}
.thank-you-message p{
	font-size: 1.2rem; 
	color: #ccc; 
	margin-bottom: 2rem;
}
.go_back a{
    background: #fff;
    color: #222;
    text-decoration: none;
    padding: 0.3rem 1rem;
    border-radius: 5px;
}
.social-icons-footer a{
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    padding-right: 1rem;
}
.hero-section .container, .about_sec .container, .why_trust .container, .portfolio_sec .container, .premium_service .container, .testimonial_sec .container,
.dream_sec .container, .faq_sec .container, .contact-section .container{
    max-width: 1140px !important;
}