/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html,
body {
  height: 100%;
  background-color: #f5f5f5;
}

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}

.aligncenter {
  display: block;
  margin: 0 auto 15px;
}

a:focus {
  outline: 0px solid;
}

img {
  max-width: 100%;
  height: auto;
}

.fix {
  overflow: hidden;
}

a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

a:hover {
  color: rgb(19, 53, 19);
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
}

body {
  background: #f5f5f5 none repeat scroll 0 0;
  color: rgb(19, 53, 19);
  font-size: 16px;
  text-align: left;
  overflow-x: hidden;
  line-height: 22px;
  font-family: 'Montserrat', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button 
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background: #1c3720;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 996;
  transition: opacity 0.4s, visibility 0.4s, transform 0.3s ease-in-out;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  transition: color 0.3s ease-in-out;
}

.back-to-top:hover {
  background: #2a4d34;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    right: 10px;
    bottom: 10px;
  }

  .back-to-top i {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 30px;
    height: 30px;
    right: 8px;
    bottom: 8px;
  }

  .back-to-top i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Preloader 
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5 url("../img/logo.png") no-repeat center center;
  background-size: 100px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Preloader */
@media (max-width: 768px) {
  #preloader {
    background-size: 80px; 
  }
}

@media (max-width: 480px) {
  #preloader {
    background-size: 60px; 
  }
}

/*--------------------------------------------------------------
# NAVBAR
--------------------------------------------------------------*/
#header {
  height: 60px;
  transition: all 0.5s;
  z-index: 997;
  background: #f5f5f5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

#header .logo h1 span {
  color: #3ec1d5;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo{
  margin-left: 70px;  
  margin-right: 50px;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
  
}



.header-bg {
  background: url(../img/background/page-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 120px 0 60px;
}

.header-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}




/*Navbar*/
.navbar {
  padding: 0;
  margin-right: 70px;
  position: relative;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  padding: 17px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: black;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover, .navbar a.active {
  background-color: #1c3720;
  color: white;
}

.navbar ul li.dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  min-width: 200px;
}

.navbar ul li.dropdown:hover > ul {
  display: block;
}

.navbar ul li.dropdown ul li a {
  padding: 10px 20px;
  color: #333;
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar ul li.dropdown ul li a:hover {
  background: #1c3720;
  color: white;
  border-radius: 5px;
}


/* Responsive*/
.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .navbar.active {
    transform: translateX(0);
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar a {
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }
}

  .navbar ul li.dropdown ul {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    background: none;
  }

  .navbar ul li.dropdown.active > ul {
    display: block;
  }

  .navbar ul li.dropdown ul li a {
    padding-left: 30px;
  }
}

.close-nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 1001;
}

@media (max-width: 991px) {
  .close-nav-toggle {
    display: block;
  }
}






/* ======= Video Section ======= */
.video-section {
  text-align: center;
  padding-top: 50px;
  background: #1c3720;
}

.video-container {
  transform: translateY(-10px); 
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); 
  transition: all 0.3s ease-in-out; 
}

.video-heading h2 {
  font-size: 35px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  margin: 40px 0 30px;
  color: #fafafa;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
  text-transform: capitalize;
}


.video-hero-section {
  position: relative;
  transform: translateY(-15px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}



.video-hero-section {
  position: relative;
  width: 100%; 
  max-width: 2000px;
  height: 85vh; 
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ======= Video Styling ======= */
#heroVideo {
  width: 90%;
  height: 100%;
  object-fit: cover;
  margin-top: 20px;
}

/* ======= Text Overlay Styling ======= */
.video-overlay {
  position: absolute;
  text-align: center;
  color: white;
  z-index: 2;
  width: 85%;
}

/* ======= Centered Button Below Text ======= */
#videoControl {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 30px;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

#videoControl:hover {
  background-color: #fff;
  color: #333;
}
@media (max-width: 768px) {
  .video-hero-section {
    height: auto;
    max-height: 300px;
  }

  .video-heading h2 {
    font-size: 30px;
  }

  .video-description {
    font-size: 16px;
  }

  #videoControl {
    font-size: 14px;
    padding: 6px 16px;
  }
}




/* ======= History ======= */
.history {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 80px;
  background-color: #1c3720; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
  margin: 40px 0;
}

/* Left Side (Timeline, Quotes, Stats) */
.left-side {
  flex: 2;
  padding: 30px;
  border-right: 2px solid #f5f5f593;
  background: #1c3720;
  backdrop-filter: blur(10px);      
  -webkit-backdrop-filter: blur(10px); 
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}


/* Timeline Section */
.timeline {
  margin-bottom: 40px;
  color: #fff;
}

.timeline h3 {
  font-weight: bold;
  font-family: Georgia, serif;
  margin-bottom: 15px;
  color: white; 
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px;
  border-left: 4px solid #800000;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
}

.timeline-item .year {
  font-weight: bold;
  font-size: 22px;
  color: white; 
  margin-right: 20px;
  min-width: 60px;
}

.timeline-item p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  color: #f5f5f5;
  text-align: left;
}

/* Quotes Section */
.quotes {
  margin-bottom: 50px;
}

.quotes h3 {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

.quotes blockquote {
  font-style: italic;
  border-left: 5px solid #800000;
  padding-left: 25px;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  transition: border-left-color 0.3s ease-in-out;
  color: #f5f5f5;
  border-radius: 5px;
  padding: 15px 25px;
  text-align: left;
}

/* Stats Section */
.stats {
  margin-top: 30px;
  color: #fff;
}

.stats h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  color: white;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

.stats ul {
  list-style-type: none;
  padding: 0;
}

.stats li {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 6px;
  border-left: 5px solid #800000;
  text-align: left;
}

.stats li strong {
  color: #fff;
}




/* Right Side */
.col-md-5 {
  flex: 3;
  padding: 30px;
}

.heading {
  font-size: 38px;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
  letter-spacing: -1px;
}

.description-container {
  font-size: 20px;
  line-height: 1.7;
  text-align: justify;
  padding-right: 15px;
}

.description {
  margin-bottom: 30px;
  color: #fff;
  line-height: 45px;
}

/* Responsive Layout */
@media screen and (max-width: 1024px) {
  .history {
    flex-direction: column;
    padding: 30px 40px;
  }

  .left-side {
    border-right: none;
    margin-bottom: 30px;
  }

  .timeline-item .year {
    font-size: 18px;
  }

  .timeline-item p {
    font-size: 16px;
  }

  .quotes blockquote {
    font-size: 16px;
  }

  .stats li {
    font-size: 18px;
  }

  .heading {
    font-size: 30px;
  }

  .description {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .history {
    flex-direction: column;
    padding: 20px 30px;
  }

  .left-side {
    border-right: none;
    margin-bottom: 30px;
  }

  .timeline-item .year {
    font-size: 16px;
  }

  .timeline-item p {
    font-size: 14px;
  }

  .quotes blockquote {
    font-size: 14px;
  }

  .stats li {
    font-size: 16px;
  }

  .heading {
    font-size: 28px;
  }

  .description {
    font-size: 14px;
  }
}


/* Disable backdrop blur for smaller screens */
@media screen and (max-width: 768px) {
  .left-side {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.awards-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between; 
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 800px; 
  margin: 0 auto; 
  gap: 15px; 
  padding: 10px 0;
}

.award-item {
  flex: 1;
  max-width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5a0f0f;
  border-radius: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.award-item img {
  max-width: 90%;
  height: auto;
}

.award-item:hover {
  transform: scale(1.1);
}



/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.568);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #330000, #800000);
  padding: 20px;
  border-radius: 10px;
  width: 60%;
  max-width: 600px;
  color: #fff;
}

.close {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 15px;
}

.close:hover,
.close:focus {
  color: #f5f5f5b6;
  text-decoration: none;
  cursor: pointer;
}

#modal-body img {
  display: block;  
  margin: 20px auto 0 auto; 
  width: 50%;
  border-radius: 10px;
}





/**
* LEGACY IMAGE 
*/
.hero-section {
  padding: 80px 0;
  position: relative;
  text-align: left;
  overflow: hidden;
}

.hero-title {
  font-size: 60px;
  font-family: "Georgia", serif;
  font-weight: bold;
  color: #4a5a3c;
  line-height: 1.2;
  position: relative;
  display: block;
  letter-spacing: .2cap;
  margin-left: -150px; 
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}


.indent-text {
  display: inline-block;
  margin-left: 185px; 
}



.overlap-text {
  display: inline-block;
  position: absolute;
  bottom: -70px;
  left: 0;
  z-index: 2;
  padding-right: 10px;
}


.hero-description {
  font-size: 22px;
  color: #1c3720;
  font-family: "Montserrat", sans-serif;
  max-width: 400px;
  margin-left: auto;
  position: relative;
  z-index: 3;
  letter-spacing: .2cap;
  line-height: 1.8cap; 
}

.hero-image {
  position: relative;
  width: 90%; 
  margin-top: 20px;
  margin-left: auto; 
  margin-right: 0; 
  z-index: 1; 
  display: flex;
  justify-content: flex-end; 
}

.hero-image img {
  width: 90%;
  height: auto;
  object-fit: cover;
  display: block;
}



@media (max-width: 1440px) {
  .hero-title {
    font-size: 50px; 
    margin-left: 0;
    text-align: center;
  }

  .indent-text {
    margin-left: 0; 
  }

  .overlap-text {
    position: relative; 
    bottom: 0;
  }

  .hero-description {
    font-size: 18px;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .hero-image img {
    width: 100%;
  }
}



@media (max-width: 992px) {
  .hero-title {
    font-size: 50px; 
    margin-left: 0;
    text-align: center;
  }

  .indent-text {
    margin-left: 0; 
  }

  .overlap-text {
    position: relative;
    bottom: 0;
  }

  .hero-description {
    font-size: 18px;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .hero-image img {
    width: 100%;
  }
}



@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
    margin-left: 0;
    text-align: center;
  }

  .indent-text {
    margin-left: 0;
  }

  .overlap-text {
    position: relative;
    bottom: 0;
  }

  .hero-description {
    font-size: 16px;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    margin-left: 0;
  }

  .hero-image img {
    width: 100%;
  }
}






/*--------------------------------------------------------------
# Company
--------------------------------------------------------------*/
.company {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 100px;
}

.heading1{
  font-size: 40px;
  font-weight: bold;
  color: black;
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: Georgia, serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.description1 {
  font-size: 18px;
  color: black;
  margin-bottom: 40px;  
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  text-align: justify;
}


.rounded-img {
  width: 650px;
  height: auto;
  object-fit: cover;
  margin-top: 30px;
}


@media screen and (max-width: 1024px) {
  .company {
    margin-left: 20px;
  }
  
  .heading1 {
    font-size: 35px;
  }

  .description1 {
    font-size: 16px;
  }

  .rounded-img {
    width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .company {
    text-align: center;
    margin-left: 0; 
  }

  .col-md-6 {
    width: 100%;
  }

  .comp .img-wrapper {
    display: block;
    margin: 20px auto;
  }

  .comp.d-md-none {
    display: block;
  }

  .comp.d-md-block {
    display: none;
  }

  .rounded-img {
    width: 80%;
    max-width: 400px;
    margin-top: 0;
    margin-bottom: 20px;
  }
}


@media screen and (max-width: 480px) {
  .heading1 {
    font-size: 28px;
    margin-top: 30px;
  }

  .description1 {
    font-size: 16px;
    line-height: 1.5;
    max-width: 95%;
    align-items: center;
    padding: 10px;

  }

  .rounded-img {
    width: 90%;
    max-width: 350px;
  }
}


.company {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.company.show {
  opacity: 1;
  transform: translateY(0);
}







/*--------------------------------------------------------------
# Guiding Principles Section
--------------------------------------------------------------*/
.mission-vision {
  background: #1c3720;
  padding: 80px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
}

.section-title2 {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

.animated-divider2 {
  width: 150px;
  height: 5px;
  background: #fff;
  margin: 20px auto;
  animation: fadeIn 1.5s ease-in-out infinite alternate;
}

@keyframes fadeIn {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.section-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.section-content {
  flex: 1 1 500px;
  color: #f5f5f5;
}


.section-subtitle {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 3px solid #fff;
  display: inline-block;
  padding-bottom: 8px;
  font-family: Georgia, serif;
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}

.vision-interactive {
  margin-top: 60px;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.vision-cards .card {
  background: linear-gradient(135deg, #330000, #800000);
  color: #fff;
  text-align: center;
  padding: 55px 10px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  font-weight: 600;
  font-size: 16px;
}

.vision-cards .card .card-number {
  width: 60px;
  height: 60px;
  background-color: #7b1e1e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  border: 4px solid #1c3720;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  top: -20px;
  left: 10%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.vision-cards .card:hover {
  transform: translateY(-8px);
}



@media screen and (max-width: 768px) {
  .section-subtitle { font-size: 28px; }
  .section-text { font-size: 16px; }
  .vision-cards .card { font-size: 15px; }
}



/* ======= CORE VALUES TWO COLUMN TIMELINE STYLE ======= */

.core-values-two-column {
  display: flex;
  gap: 60px;
  margin-top: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.core-values-column {
  flex: 1;
  min-width: 300px;
  border-left: 4px solid #800000;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.icon-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}



.icon-number i {
  font-size: 24px;
  color: #fff;
  background-color: #800000;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.value-content h3 {
  font-size: 22px;
  color: #1c412c;
  margin-bottom: 10px;
  font-weight: bold;
}

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


.animated-divider {
  width: 150px;
  height: 4px;
  background: #1c3720;
  margin: 10px auto 40px auto;
  animation: fadeIn 1.5s ease-in-out infinite alternate;
}

@keyframes fadeIn {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .core-values-two-column {
    flex-direction: column;
    gap: 40px;
  }

  .core-values-column {
    padding-left: 30px;
  }

  .value-item {
    flex-direction: column;
    gap: 15px;
  }

  .icon-number {
    flex-direction: row;
    gap: 10px;
  }
}



/*--------------------------------------------------------------
# Responsive Company Principles
--------------------------------------------------------------*/
.section-title {
  margin-top: 80px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 40px;
}

.company-principles {
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
  margin-bottom: 30px;
}

.company-principles p {
  font-size: 18px;
  color: #333;
}

@media screen and (max-width: 1024px) {
  .company-principles {
    font-size: 1.5rem;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .company-principles {
    font-size: 1.3rem;
    word-wrap: break-word;
  }

  .company-principles p {
    font-size: 16px;
  }

  .footer {
    margin-top: 50px;
  }
}


@media (max-width: 768px) {
  .container, 
  .row, 
  .section-block, 
  .awards-section, 
  .mission-vision, 
  main {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}






/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer-area {
  padding: 20px 0;
  background: #f5f5f5;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}


.footer-column {
  flex: 1;
  padding: 20px;
  min-width: 280px; 
  text-align: left;
}

/* Center the second column (Logo) */
.footer-column:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.footer-content h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: black;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-content p {
  color: black;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Contact Details */
.footer-contacts p span {
  font-weight: bold;
}


.footer-logo-image {
  width: 120px;
  margin: 20px auto 0;
  display: block;
}


.property-section1 {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.property-section1 h4 {
  margin-right: 65px;
}


.property-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.property-links li {
  margin-bottom: 8px;
}

.property-links li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.property-links li a:hover {
  color: #2a4d34;
  text-decoration: underline;
}

/* Bottom Footer Area */
.footer-area-bottom {
  background: #f5f5f5;
  padding: 5px 0;
  text-align: center;
}

.copyright p {
  color: #1c3720;
  margin: 0;
}

/* Footer Image */
.footer-bottom-image {
  width: 100%;
  margin-top: 20px;
}

.footer-bottom-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Footer Title */
.footer-logo-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.footer-logo-title span {
  color: #1c3720;  
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-logo-title strong {
  color: black;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# RESPONSIVE STYLES
--------------------------------------------------------------*/

/* Tablets & Small Screens */
@media (max-width: 991px) {
  .footer-area {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    text-align: center;
    min-width: 100%;
  }
  .property-section1 {
    align-items: center;
    margin-left: 0;
  }
  .property-section1 h4 {
    margin-right: 0;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .footer-column {
    min-width: 100%;
    padding: 10px;
  }
  .footer-logo-image {
    width: 100px;
  }
  .footer-logo-title {
    font-size: 30px;
  }
}
 