/* style-default.css */

/* 1. CSS Variables for Color Scheme */
:root {
    --primary-color: #0d6efd;
    --accent-color: #3b5998;
    --background-color: #ffffff;
    --text-color: #333333;
    --section-bg-alt: #f9f9f9;
    --heading-color: #00A2E2;
    --hero-tagline-bg: rgba(255, 255, 255, 0.8);
    --hero-tagline-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.color-red{
	--primary-color: #D4003A;
	 --heading-color: #D4003A;
}

.color-green{
	--primary-color: #3AAEA9;
	 --heading-color: #3AAEA9;
}

/* 2. Global Base Styles */
html, body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: tt-commons-pro, sans-serif;
    line-height: 1.6;
	font-size: clamp(16px, 1.3vw, 18px);
	overflow-x:hidden;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
	max-width:100%;
	--bs-gutter-x: 0rem;
}

.container.mt-4 {
    margin-top: 0rem !important;
}

h2, h4, h4, h5, h6 {
    color: var(--heading-color);
}

.hero-tagline h1{
	color:#fff;}

h5{
	font-size: clamp(20px, 3vw, 40px);
}

.btn-primary{
    --bs-btn-bg: var(--heading-color);
    --bs-btn-border-color:var(--heading-color);
}

.font-sans-serif h1, .font-sans-serif h2, .font-sans-serif .card-title, .font-sans-serif h5{
	 font-family: "Playfair Display", serif;
 
}

/* 3. Navigation Bar */
.bg-light{
	background:#fff!important;
}

.nav-link{
	font-size: clamp(15px, 1.66vw, 17px);
	color:#000;
}

header{
	position: absolute;
    background: #fff;
    width: 100%;
    z-index: 9;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: var(--background-color);
     
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 15px;
}
.navbar .navbar-nav {
    margin-left: auto;
    display: flex;
    gap: 25px;
}
.navbar .navbar-toggler {
    border: none;
    outline: none;
}

/* Adjust for Responsive Navbar */
@media (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
    }
    .navbar {
        padding: 10px 0px;
    }
    .navbar-nav {
        flex-direction: column;
    }
    .navbar-brand {
        font-size: 1.2rem; /* Reduce font size on smaller screens */
        max-width: calc(100vw - 60px); /* Ensure it does not exceed screen width */
    }
}

/* 3b. Hero Section */
.hero-container {
    position: relative;
    width: 100%;
	height:100vh;
	overflow:hidden;
    margin-bottom: 2rem;
}

.hero-container:after{
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.3);
}

.hero-container.my-5{
	margin:0!important;
}

.hero-image {
    width: 100%;
    display: block;
}
.hero-tagline {
    position: absolute;
    bottom:60px;
    left: 50%;
    transform: translateX(-50%);
   
    
    border-radius: 4px;
    max-width: 80%;
    text-align: center;
	z-index:8;
}

.hero-tagline .btn{
	margin:1rem 0 0 0;
}

.hero-tagline p{
	color:#fff;
	font-size: clamp(15px, 2.34vw, 30px);
	line-height:1;
	
	margin:1rem 0 0 0;
}

.hero-tagline.visible{
	transform: translateX(-50%)!important;
}

.hero-tagline h1 {
    font-size: clamp(30px, 8vw, 100px);
	line-height:1;
}

/* 4. Section Styling */
.section {
    width: 100%;
    padding: 4rem 2rem;
    margin: 0 auto;
}

/*.section:nth-of-type(even) {
    background-color: var(--section-bg-alt);
}
*/
/* 5. Section Headings */
.section-heading {
    font-size: clamp(40px, 4.68vw, 60px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--heading-color);
    position: relative;
}
/*.section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}*/

.products .row{
	width:76%;
	margin:0 auto;
}

.products .text-center{
	width:100%;
	max-width:900px;
	margin:0 auto 3rem auto;
}

    .col-md-4{
        flex: 0 0 auto;
        width: 31%;
		margin-bottom:2rem !important;
    }

.about{
	padding:2rem 0;
}

.about .col-md-6{
	padding:0;
}

.about .col-md-6 h2{
	margin:0 0 2rem 0;
}

.about .col-md-6 img{
	border-radius:0 15px 15px 0;
	width:100%;
}

.about .row{
	 align-items: flex-start;
	 align-items:center; 
}

.about .two{
	background:rgba(59, 59, 59, 0.05);
	border-radius:15px;
	padding: 100px 8% 100px 10%;
    width: 41%;
    margin: 0 0 0 -100px;
}

.about h1{
	font-size: clamp(20px, 3.12vw, 40px);
}

.about h2{
	font-size: clamp(25px, 4.68vw, 60px);
}

.btn{
	font-size: clamp(15px, 1.2vw, 17px);
}

/* Cards for Products/Services, Team, Gallery */
.card {
   border:none;  
   background:none;
}

.card-title{
	font-size: clamp(22px, 2.81vw, 32px);
	    color: var(--heading-color);
}

.card-text:last-child {
    font-size: clamp(15px, 1.32vw, 17px);
	    line-height: 1.2;
}

.card-body{color:#000;
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
	border-radius:18px;
}
.card-body {
  padding:20px 0 0 0;
}


.text-center{
	    font-size: clamp(18px, 4.68vw, 21px);
		    margin: 0 0 4rem 0;
}

/* 6. Staff / Team Member Styles */
.staff-card {
    text-align: center;
    margin-bottom: 2rem;
}
.team-member-img {
    width: 250px;
    height: 250px;
 
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.staff-card h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team h5{
	margin:1rem 0 1rem 0;
}

.team{
	text-align:center;
}

.team .row{
	margin:3rem 0 0 0;
}

.team .desc{
	width:80%;
	line-height:1.2;
	margin:0 auto;
}

.team .position{
	font-size: clamp(12px, 1.3vw, 16px);
	letter-spacing:3px;
	text-transform:uppercase;
}

gallery h2 {
	margin:0 0 3rem 0;
}

.gallery{
	    position: relative;
    overflow: visible;  
}

.gallery-bg{
	    background: #f5f5f5;
    padding: 80px 0 200px 0;
    position: relative;
    z-index: 1;
}



.gallery .row{
	    position: relative;
   margin:-150px 0 0 0;
    z-index: 2;
}

.gallery .card-text:last-child {
    font-size: clamp(16px, 1.64vw, 21px);
    text-align:center;
}

.contact  .info{
	text-align:center;
	font-size: clamp(15px, 1.32vw, 17px);
	margin:0 0 2rem 0;
}

.contact  textarea{
	resize:none;
	height:122px;
}

.contact strong{
	font-weight:normal;
}

.contact  {
	/*margin:15rem 0 0 0!important;*/
	padding: 6rem 0 6rem 15rem;
	background-size:cover;
	background-position:center;
	background-image: url(images/contact.jpg);
    
    
}

.contactwrapper{
	max-width:482px;
	border-radius:18px;
	background:#fff;
	padding:3rem 4rem;
	 
}

.contactwrapper h2{
	margin:0 0 2rem 0;
}

.contactwrapper .btn{
	    margin: 20px auto 0 auto;
    display: block;
}

.contactwrapper .col-md-6{
	width:100%;
}

.contactwrapper .row{
	flex-direction:column;
}

.form-control{
	font-size: clamp(12px, 1vw, 14px);
	height:45px;
}

.mb-3 {
    margin-bottom: 0.5rem !important;
}

    .col-lg-3 { 
        width: 23%;
    }

a{
	color:#000;
}

input::placeholder,
textarea::placeholder {
  color: #000!important;  
}

footer .container{
	text-align:center;
	font-size: clamp(12px, 1vw, 14px);
	    display: flex;
    justify-content: center;
    gap: 15px;
}

input::placeholder {
  color: #000;  
}
/* Team member photos will always be 150x150, object-fit ensures the image fills the space, and border-radius makes it circular */
/*.team-member-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}*/
/* 7. Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
/* 8. Responsive Adjustments */
@media (max-width: 1600px) {


	.hero-image{
		width:130%;
	}

	.img-fluid{
		max-width:130%;
	}


	
	.about .two{
		width:45%;
	}
	
	.about .col-md-6 h2{
		line-height:1;
	}
}

@media (max-width: 1300px) {
	.products .row{
		width:95%;
	}

	.hero-image{
		width:140%;
	}

	.img-fluid{
		max-width:140%;
	}

}

@media (max-width: 1200px) {
	.col-lg-3 {
    width: 45%;
	}
	
	.about .two {
	 
		padding: 60px 4% 60px 10%;
		width: 48%;
		margin: 0 0 0 -50px;
	}

	.hero-image {
		width: 200%;
		margin: 0 0 0 -50%;
	}

	.img-fluid {
		max-width: 200%;
	}
}

@media (max-width: 850px) {
 
     

    .h1, h1 {
        font-size: calc(1.5rem 24px);
    }
	.col-md-6{
		margin:0 0 40px 0;
	}
	
	.col-md-4{
		width:45%;
	}
	
	  .about .two {
        padding: 60px 5% 60px 5%;
        width: 90%;
        margin: 1rem auto 0 auto;
		}

	.img-fluid {
		max-width: 230%;
	}

	.hero-image{
		width:230%;
	}
}

@media (max-width: 750px) {
	.hero-tagline{
		bottom:10px;
	}
	
	.gallery-bg{
		padding:40px 0 200px 0;
	}
	
	.contact{
		padding:5rem 5rem 0 5rem;
	}
	
	.section{
		padding:3rem 2rem;
	}
	
	.about .two{
		width:100%;
	}
	
	.team-member-img{
		width:200px;
		height:200px;
	}

	.hero-image {
		width: 260%;
	}

	.img-fluid {
		max-width: 260%;
	}
	
	   
 
}

@media (max-width: 650px) {
	.hero-tagline{
		left:0;
		max-width:100%;
		width:100%;
	}
	
	.products .row {
        width: 100%;
		justify-content:left!important;
    }
	
	    .col-md-4 {
        width: 50%;
    }
	
	.card img{
		height:200px;
	}
	
	.my-5 {
 
    margin-bottom: 0rem !important;
}
	
	.hero-tagline.visible {
    transform: translateX(0%) !important;
}

	.img-fluid {
		max-width: 310%;
	}

	.hero-image {
		width: 310%;
		margin:0 0 0 -100%;
	}

	.hero-tagline {
		bottom: 100px;
	}
}

@media (max-width: 550px) {
    .h1, h1 {
        font-size: calc(1.425rem);
    }

     
	
	 
	
	.section-heading {
    font-size: 1.5rem;
	}
	
	.my-5 {
    	margin-top: 1rem !important;
	}
	
	.hero-container.my-5 {
		margin: 40px 0 0 0 !important;
	}
	
	.contactwrapper {
		max-width: 350px;
		 
		padding: 2rem 1rem;
		margin: 0 auto;
	}
	
	.section {
        padding:1rem 0.5rem;
 
    }
	
	    .team-member-img {
        width: 100px;
        height: 100px;
    }
	
	.team h5 {
		margin: 0.1rem 0 0.4rem 0;
	}
	
	.team .desc{
		width:100%;
	}
	
	p {
		 
		margin-bottom: 0.1rem;
	}
	
	.contactwrapper     .col-md-6 {
        margin: 0 0 0px 0;
    }
	
	    .gallery-bg {
        padding: 40px 0 150px 0;
    }

	.team .position{
		letter-spacing:1px;
	}

	#contact-300006{
		padding:3rem 2rem 8rem 2rem;
		margin:250px 0 0 0!important;
	}

	.contactwrapper{
		margin:-300px auto 0 auto;
		box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
	}
}