/*
Theme Name: The Top Group
Author: Pawan
Version: 1.0
*/

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

/* ================= DESKTOP DEFAULT ================= */

.section h2{
	font-size:40px;
	margin-bottom:10px;
	color:#BC9F59!important
}

.section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
#companies h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #BC9F59;
    padding-top: 10px;
}
.mobile-logo img{
	max-width:100px;
}
/* Hide mobile header, toggle & mobile logo on desktop */
.mobile-header,
.menu-toggle,
.mobile-logo {
  display: none;
}

/* SIDEBAR */
.side-menu{
  position:fixed;
  left:0;
  top:0;
  width:220px;
  height:100vh;
  background:#BC9F59;
  z-index:9999;
}

.sidebar-logo{
  text-align:center;
  padding:20px;
}

.sidebar-logo img{
  max-width:150px;
}

.side-menu ul{list-style:none}

.side-menu a {
    display: block;
    color: #000;
    padding: 14px 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
}


.side-menu a:hover{
  background:rgba(255,255,255,.1);
}

.close-menu{display:none;}

/* CONTENT OFFSET */
.page-content{
  margin-left:220px;
  margin-top:0;
}

/* HERO */
.hero{
  min-height:100vh;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust darkness */
  z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero h1{font-size:60px;}
.hero p {
    color: #d6b36a;
    font-size: 28px;
    text-transform: uppercase;
    margin-top: 20px;
}

/* SECTIONS */
.section{
  display:flex;
  min-height:100vh;
}

.section .text{
  width:50%;
  padding:80px;
}

.section .image{
  width:50%;
  background-size:cover;
  background-position:center;
}

/* DARK */
.dark{
  background:#000;
  color:#fff;
/*   padding:100px;
  text-align:center; */
}

/* COMPANIES */
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.company-card:last-child {
  grid-column: 2 / span 1;
}




.company-card{
  border:1px solid #BC9F59;
  padding:40px;
  transition:.3s
}

.company-card:hover{
  transform:translateY(-8px)
}

@media (max-width: 992px) {
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .company-grid {
    grid-template-columns: 1fr;
  }
}


.values-section {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
}

/* LEFT CONTENT */
.values-content {
  padding: 100px 80px;
  background: #fff;
}

.values-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #BC9F59;
  margin-bottom: 10px;
	
}

.values-subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 60px;
}
	.value-item:last-child {
  margin-bottom: 0!important;
}

/* EACH VALUE */
.value-item {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.value-item span {
  font-size: 22px;
  font-weight: 700;
  color: #BC9F59;
  min-width: 40px;
}

.value-item h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* RIGHT IMAGE */
.values-image {
  background-size: cover;
  background-position: right;
}


/* MOBILE */
@media (max-width: 991px) {
  .values-section {
    grid-template-columns: 1fr;
  }

  .values-content {
    padding: 40px 20px;
  }
	.value-item:last-child {
  margin-bottom: 0!important;
}
}

 @media (max-width: 991px) {
    .values-image {
        min-height: 610px;
    }
}



/* BUTTONS */
.btn,.btn-outline{
  display:inline-block;
  margin-top:20px;
  padding:10px 24px;
  text-decoration:none
}

.btn{background:#BC9F59;color:#000}
.btn-outline{border:1px solid #BC9F59;color:#BC9F59}

/* ================= MOBILE ================= */
@media(max-width:900px){

   /* SIDEBAR FULL SCREEN */
  .side-menu{
    position:fixed;
    top:0;
    left:0;
    width:75%;
    height:100vh;              /* ✅ full screen */
    padding-top:70px;          /* mobile header space */
    transform:translateX(-100%);
    transition:.35s ease;
    z-index:3;
  }

  .side-menu.active{
    transform:translateX(0);
  }

  /* CLOSE BUTTON (VISIBLE & CLICKABLE) */
  .close-menu{
    display:block;
    position:absolute;
    top:16px;
    right:16px;
    font-size:28px;
    color:#fff;
    cursor:pointer;
    z-index:3;            
  }
	
	.sidebar-logo img {
    max-width: 150px;
    position: absolute;
    z-index: 4;
    top: 0;
		display:none;
}

  /* HIDE DESKTOP LOGO */
/*   .sidebar-logo{
    display:none;
  } */

  /* MENU LINKS FULL HEIGHT */
  .side-menu ul{
    margin-top:-30px;
  }

 
	
	.side-menu a {
    display: block;
    color: #000;
    padding:16px 24px;
    font-size:16px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}
	
.mobile-header, .menu-toggle, .mobile-logo {
    display: block!important;
    position: relative;
    z-index: 999;
}
	
.menu-toggle {
    position: absolute;
    right: 0;
    right: 20px;
    font-size: 25px;
    color: #ffffff;
}
	.mobile-logo {
		position: absolute;
    left: 10px;
    top: 10px;
	}   

  /* CONTENT BELOW HEADER */
  .page-content{
    margin-left:0;
    margin-top:0px;
  }

  .section{
    flex-direction:column
  }

  .section .text,
  .section .image{
    width:100%;
		padding:40px 20px!important;
  }
	
	.section .image {
    width: 100%;

    min-height: 515px;
}
	
	.section {
		  min-height: auto;
	}
	
.dark {
    padding: 0;
}

  .company-grid{
    grid-template-columns:1fr
  }
	
	.hero-content {
    position: relative;
    padding: 20px;
    color: #fff;
}
.section h2{
	font-size:28px;
	margin-bottom:10px;
	color:#BC9F59!important;
}
	
	.section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
	.hero h1 {
    font-size: 40px;
}
	
}



.contact-section {
  background: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 100vh;
}

/* LEFT */
.contact-left {
  padding: 100px 80px;
}

.contact-title {
  font-size: 40px;
  font-weight: 800;
  color: #BC9F59;
  margin-bottom: 10px;
}

.contact-left hr {
  width: 60px;
  border: 1px solid #BC9F59;
  margin-bottom: 25px;
}

.contact-left h3 {
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-left p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* FORM */
.contact-form {
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 14px;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form input[type="submit"] {
  background: #BC9F59;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  width: auto;
}

/* RIGHT IMAGE */
.contact-right {
  background-size: cover;
  background-position: center;
}

#vision p{
	font-size:22px;
}

/* MOBILE */
@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-right {
    min-height: 500px;
	  display:none;
  }

  .contact-left {
    padding: 40px 25px;
  }
	#vision p{
	font-size:16px;
}
	.hero {
    min-height: 70vh;
 
}
	.mobile-logo img {
    max-width: 100px;
    filter: invert(1);
}
}


