body,
html {
  font-family: 'Times New Roman', Times, serif !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: 400;
  width: 100%;
  height: 100%;
}

h2,
h3,
h4 {
  font-family: 'Times New Roman', Times, serif;
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
  color: #333;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
  font-family: 'Times New Roman', Times, serif;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: #608dfd;
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #608dfd;
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: #1e7a46;
  margin-bottom: 20px;
  border: 0;
}

/* Responsive for Mobile */
@media screen and (max-width: 768px) {
  body,
  html {
    font-size: 14px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
    line-height: 18px;
  }

  p {
    font-size: 14px;
    line-height: 22px;
  }

  p.intro {
    margin: 10px 0 0;
    line-height: 22px;
  }

  hr {
    width: 50px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  body,
  html {
    font-size: 12px;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  h3 {
    font-size: 16px;
  }

  h4 {
    font-size: 14px;
  }

  h5 {
    font-size: 12px;
    line-height: 16px;
  }

  p {
    font-size: 13px;
    line-height: 20px;
  }

  p.intro {
    margin: 8px 0 0;
    line-height: 20px;
  }

  hr {
    width: 40px;
    margin-bottom: 10px;
  }

  ul,
  ol {
    padding-left: 20px;
  }
}

/* Navigation */
#menu {
  padding: 15px;
  transition: all 0.8s;
}
#menu img {
  border-radius: 50%;
}
#menu.navbar-default {
  background-color: #fff;
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#menu a.navbar-brand {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #645434;
  text-transform: uppercase;
}
#menu.navbar-default .navbar-nav > li > a {
  /* font-family: "Lato", sans-serif; */
  text-transform: uppercase;
  color: #645434;
  font-size: 17px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
}
#menu.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #523a28 0%, #84644b 100%);
  content: "";
  transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(to right, #523a28 0%, #a0846b 100%) !important;
  content: "" !important;
  transition: width 0.2s !important;
}
.navbar-toggle {
  border: none;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #fff;
  border-color: #7b6446;
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: #7b6446;
}

/* Section Titles */
.section-title {
  margin-bottom: 40px;
}
.section-title h2 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.section-title h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #64442e 0%, #a0846b 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
.section-title p {
  font-size: 18px;
}

/* Buttons */
.btn-custom {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #5ca9fb;
  background-image: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
  padding: 14px 34px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.5s linear;
  border: 0;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: #fff;
  background-image: none;
  background-color: #6372ff;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}

/* Responsive for Tablets */
@media screen and (max-width: 768px),(max-width: 850px) {
  #menu {
    padding: 10px;
  }
  #menu.navbar-default .navbar-nav > li > a {
    font-size: 14px;
    margin: 8px 10px 0;
  }
  #menu a.navbar-brand {
    font-size: 20px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .section-title p {
    font-size: 16px;
  }
  .btn-custom {
    padding: 12px 30px;
    font-size: 14px;
  }
  #menu .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Responsive for Tablets */
@media screen and (max-width: 768px),(max-width: 1050px) {
  #menu {
    padding: 10px;
  }
  #menu.navbar-default .navbar-nav > li > a {
    font-size: 14px;
    margin: 8px 10px 0;
  }
  #menu a.navbar-brand {
    font-size: 20px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .section-title p {
    font-size: 16px;
  }
  .btn-custom {
    padding: 12px 30px;
    font-size: 14px;
  }
  #menu .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}


/* Responsive for Mobile */
@media screen and (max-width: 480px) {
  #menu {
    padding: 5px;
  }
  #menu.navbar-default .navbar-nav > li > a {
    font-size: 12px;
    margin: 5px 5px 0;
  }
  #menu a.navbar-brand {
    font-size: 18px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title p {
    font-size: 14px;
  }
  .btn-custom {
    padding: 10px 25px;
    font-size: 12px;
  }
  .navbar-toggle {
    margin: 5px;
  }
   .navbar-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    gap: 20px;
  }
  .navbar-brand.page-scroll {
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
  }
} 

/* Responsive for Mobile */
@media screen and (max-width: 400px) {
  #menu {
    padding: 5px;
  }
  #menu.navbar-default .navbar-nav > li > a {
    font-size: 12px;
    margin: 5px 5px 0;
  }
  #menu a.navbar-brand {
    font-size: 18px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title p {
    font-size: 14px;
  }
  .btn-custom {
    padding: 10px 25px;
    font-size: 12px;
  }
  .navbar-toggle {
    margin: 5px;
  }
   .navbar-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;

  }

  .navbar-brand.page-scroll {
    display: flex;
    justify-content: space-between;
    padding: 0 0;
  }
  .navbar-brand.page-scroll .navbar-text {
    font-size: 13px;
  } 
} 

/* Responsive for Mobile */
@media screen and (max-width: 360px) {
  #menu {
    padding: 5px;
  }
  #menu.navbar-default .navbar-nav > li > a {
    font-size: 12px;
    margin: 5px 5px 0;
  }
  #menu a.navbar-brand {
    font-size: 18px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title p {
    font-size: 14px;
  }
  .btn-custom {
    padding: 10px 25px;
    font-size: 12px;
  }
  .navbar-toggle {
    margin: 5px;
  }
   .navbar-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;

  }

  .navbar-brand.page-scroll {
    display: flex;
    justify-content: space-between;
    padding: 0 0;
  }
  .navbar-brand.page-scroll .navbar-text {
    font-size: 12px;
  } 
} 


/* Header Section */
.intro {
  display: table;
  width: 100%;
  height: 100%;
  padding: 0;
  background: url(../img/intro-bg.jpg) center no-repeat;
  align-content: center;
  background-color: #e5e5e5;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.intro .overlay {
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
}
.intro h1 {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
.intro h1 span {
  font-weight: 800;
  color: #5ca9fb;
}
.intro p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}
header .intro-text {
  padding-top: 350px;
  padding-bottom: 200px;
  text-align: center;
}

/* Responsive for Tablets */
@media screen and (max-width: 768px) {
  .intro h1 {
    font-size: 50px;
  }

  .intro {
    padding: 130px 0 0 0;
  }
  .intro h1 span {
    font-size: 50px;
  }
  .intro p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 40px;
  }
  header .intro-text {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}


/* Responsive for Tablets */
@media screen and (max-width: 920px) {
  .intro h1 {
    font-size: 50px;
  }

  .intro {
    padding: 130px 0 0 0;
  }
  .intro h1 span {
    font-size: 50px;
  }
  .intro p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 40px;
  }
  header .intro-text {
    padding-top: 250px;
    padding-bottom: 100px;
  }
}

/* Responsive for Tablets */
@media screen and (max-width: 1050px) {
  .intro h1 {
    font-size: 50px;
  }

  .intro {
    padding: 130px 0 0 0;
  }
  .intro h1 span {
    font-size: 50px;
  }
  .intro p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 40px;
  }
  header .intro-text {
    padding-top: 200px;
    padding-bottom: 100px;
  }
    .intro {
      width: 100vw;
      height: 100%;
      padding: 80px 0;
    }
  }


/* Responsive for Mobile */
@media screen and (max-width: 480px) {
  .intro h1 {
    font-size: 36px;
  }
  .intro h1 span {
    font-size: 36px;
  }
  .intro p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  header .intro-text {
    padding-top: 300px;
    padding-bottom: 30px;
  
  }
  .intro {
    width: 100vw;
    height: 100%;
    padding: 50px 0;
  }
}

/* Responsive for Mobile */
@media screen and (max-width: 400px) {
  .intro h1 {
    font-size: 36px;
  }
  .intro h1 span {
    font-size: 36px;
  }
  .intro p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  header .intro-text {
    padding-top: 300px;
    padding-bottom: 30px;
  
  }
  .intro {
    width: 100vw;
    
    min-height: 100vh;
  }

}

/* Features Section */
#features {
  background: #f6f6f6;
}

#features i.fa {
  font-size: 38px;
  margin-bottom: 20px;
  transition: all 0.5s;
  color: #fff;
  width: 100px;
  height: 100px;
  padding: 30px 0;
  border-radius: 50%;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive for Tablets */
@media screen and (max-width: 768px) {
  #features i.fa {
    font-size: 30px; /* Slightly smaller icon */
    width: 80px;     /* Reduced circle size */
    height: 80px;
    padding: 25px 0; /* Adjust padding to maintain proportions */
  }
}

/* Responsive for Mobile */
@media screen and (max-width: 480px) {
  #features i.fa {
    font-size: 24px; /* Further reduced icon size for small screens */
    width: 60px;     /* Smaller circle */
    height: 60px;
    padding: 20px 0; /* Adjust padding for smaller circles */
  }
}

/* About Section */
#about {
  width: 100%;
  padding: 100px 0;
  background-image: url(../img/About\ template3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: background-size 0.5s ease;
  overflow: hidden;
}

#about .container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.about-text {
  width: 45%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  transition: transform 0.4s ease, background 0.3s ease;
}

.about-text:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

#about h2.about-title, #about h3.about-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
  /* color:#866144; */
  background: linear-gradient(to left,#a39080, #917a64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#about p.about-paragraph {
  color: #a4a49a;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  /* text-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
}

#about ul {
  color: #a4a49a;
  font-size: 16px;
  list-style: none;
  padding: 0;
}

#about ul li.about-list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

#about ul li.about-list-item:hover {
  transform: scale(1.05);
}

#about ul li.about-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #866144;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  #about .container {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    gap: 20px;
  }
  #about{
    padding: 150px 0;
  }

  .about-text {
    width: 90%; /* Full width for better readability */
    padding: 20px;
  }

  #about h2.about-title, #about h3.about-title {
    font-size: 24px; /* Smaller font size for titles */
  }

  #about p.about-paragraph {
    font-size: 14px; /* Adjust font size for better readability */
  }

  #about ul li.about-list-item {
    font-size: 14px; /* Adjust font size for list items */
    padding-left: 15px; /* Adjust padding for smaller screens */
  }

  #about ul li.about-list-item::before {
    font-size: 16px; /* Adjust bullet size */
  }
}


/* Responsive Design */
@media screen and (max-width: 920px) {
  #about .container {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    gap: 20px;
  }
  #about{
    padding: 200px 0;
  }

  .about-text {
    width: 90%; /* Full width for better readability */
    padding: 20px;
  }

  #about h2.about-title, #about h3.about-title {
    font-size: 24px; /* Smaller font size for titles */
  }

  #about p.about-paragraph {
    font-size: 14px; /* Adjust font size for better readability */
  }

  #about ul li.about-list-item {
    font-size: 14px; /* Adjust font size for list items */
    padding-left: 15px; /* Adjust padding for smaller screens */
  }

  #about ul li.about-list-item::before {
    font-size: 16px; /* Adjust bullet size */
  }
}

/* Responsive Design */
@media screen and (max-width: 1050px) {
  #about{
    padding: 160px 0;
    min-height: 100vh;
  }
}

@media screen and (max-width: 480px) {
  #about {
    padding: 50px 0; /* Reduce padding for smaller devices */
  }

  .about-text {
    padding: 15px; /* Adjust padding for compact view */
  }

  #about h2.about-title, #about h3.about-title {
    font-size: 20px; /* Further reduce font size for smaller screens */
  }

  #about p.about-paragraph {
    font-size: 12px; /* Compact font size for small screens */
  }

  #about ul li.about-list-item {
    font-size: 12px; /* Compact font size for list items */
    padding-left: 10px; /* Further adjust padding */
  }
  #about .container {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    gap: 20px;
  }
}



/* Services Section */
#services .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#services {
  padding: 100px 0;
  background-image: url(../img/Services\ 2nd\ Page.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
#services .logo-img {
  width: 150px;
}
#services .service-desc {
  margin: 10px 10px 20px;
}
#services h2 {
  color: #fff;
}
#services .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#services i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
#services h3 {
  font-weight: 700;
  padding: 5px 0;
  color: #fff;
}
#services .section-title p {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
#services .service-desc p {
  line-height: 1.5; /* Adjust the spacing between lines */
  word-spacing: normal;
  color: #f0f0f0;
}
#services .queries p {
  justify-content: center;
}
#services .queries a {
  color: #f6f6f6;
  text-decoration-line: underline;
}
#services .service-desc {
  margin-bottom: 40px;
}
#services .row > div {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#services .row > div:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
#services .row > div .service-desc {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 5px;
  color: #f0f0f0;
}
#services .row > div h3 {
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
}
/* Queries Section */
#services .queries {
  margin-top: 20px;
  text-align: center;
}
#services .queries p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 10px;
}
#services .queries a {
  color: #f6f6f6;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}
#services .queries a:hover {
  color: #5ca9fb;
}
#services .row > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 250px; /* Adjust as needed */
}

#services .row > div .service-desc {
  flex-grow: 1; /* Ensures all cards expand evenly */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  text-align: center;
}


/* Responsive for Tablets */
@media screen and (max-width: 768px) {
  #services .queries p {
    font-size: 14px; /* Adjust font size for tablet */
  }

  #services .queries a {
    font-size: 14px; /* Reduce link font size for better fit */
  }

  #services .queries {
    margin-top: 15px; /* Adjust spacing for smaller screens */
  }
  #services .row > div {
    min-height: 200px;
  }
}

/* Responsive for Tablets */
@media screen and (max-width: 920px) {
  #services {
    padding: 160px 10px; /* Reduce padding for smaller screens */
  }

  #services h2 {
    font-size: 24px; /* Adjust title size */
  }

  #services i.fa {
    font-size: 36px; /* Smaller icon size */
    width: 100px;
    height: 100px;
    padding: 30px 0;
  }

  #services .logo-img {
    width: 120px; /* Resize logo */
  }

  #services .row {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
  }
}

/* Responsive for Tablets */
@media screen and (max-width: 1050px) {
  #services {
    padding: 160px 10px; /* Reduce padding for smaller screens */
  }
}
/* Responsive for Mobile */
@media screen and (max-width: 480px) {
  #services .queries p {
    font-size: 12px; /* Further reduce font size for mobile */
    margin-bottom: 8px;
  }

  #services .queries a {
    font-size: 12px; /* Adjust link size */
  }

  #services .queries {
    margin-top: 10px; /* Further adjust spacing for mobile */
    padding: 0 10px; /* Add padding for mobile */
  }
  #services .row > div {
    min-height: 150px;
  }
}


/* Responsive for Tablets */
@media screen and (max-width: 768px) {
  #services {
    padding: 160px 10px; /* Reduce padding for smaller screens */
  }

  #services h2 {
    font-size: 24px; /* Adjust title size */
  }

  #services i.fa {
    font-size: 36px; /* Smaller icon size */
    width: 100px;
    height: 100px;
    padding: 30px 0;
  }

  #services .logo-img {
    width: 120px; /* Resize logo */
  }

  #services .row {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
  }
}

/* Responsive for Mobile */
@media screen and (max-width: 480px) {
  #services {
    padding: 80px 10px; /* Further reduce padding */
  }

  #services h2 {
    font-size: 20px; /* Further adjust title size */
  }

  #services i.fa {
    font-size: 28px; /* Even smaller icon size */
    width: 80px;
    height: 80px;
    padding: 20px 0;
  }

  #services .logo-img {
    width: 100px; /* Resize logo for mobile */
  }

  #services .row > div {
    margin-bottom: 20px; /* Add spacing between stacked items */
  }

  #services .service-desc {
    padding: 10px; /* Adjust padding */
    margin: 0 5px 20px;
  }

  #services .section-title p {
    font-size: 14px; /* Adjust font size for descriptions */
  }
}
/* Play Section */
#play {
  background-image: url(../img/play.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 100px 0;
  margin: 0 auto;
  text-align: center; /* Center the content */
}

#play p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}

.download-button {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 20px;
  font-size: 24px; /* Adjust font size for buttons */
  color: #fff;
  background-color: #7c645c;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-button:hover {
  background-color: #7c6c58;
  transform: scale(1.05);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #6b503d;
}

/* Slideshow container */
.slideshow {
  position: relative;
  max-width: 70%; /* Adjust max-width for tablets */
  margin: auto;
  overflow: hidden;
}

.slide-image {
  width: 100%; /* Ensure image fits in container */
  height: auto;
  border-radius: 10px;
}

.caption {
  position: absolute;
  bottom: 10px; /* Adjust bottom position */
  width: 100%;
  text-align: center;
  color: white;
  font-size: 14px; /* Adjust font size */
}

/* Navigation buttons */
.prev-button, .next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  padding: 10px 15px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  border-radius: 5px;
  z-index: 1;
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

.prev-button:hover, .next-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive for Tablets */
@media screen and (max-width: 768px) {
  #play {
    padding: 150px 0; /* Adjust padding */
  }

  #play p {
    font-size: 20px; /* Reduce font size for tablets */
  }

  .download-button {
    font-size: 28px; /* Adjust button font size */
    padding: 12px 24px; /* Adjust button padding */
  }

  .slideshow {
    max-width: 90%; /* Increase max-width for tablets */
  }

  .caption {
    font-size: 12px; /* Reduce caption font size */
  }
}


/* Responsive for Tablets */
@media screen and (max-width: 920px) {
  #play {
    padding: 150px 0; /* Adjust padding */
  }

  #play p {
    font-size: 20px; /* Reduce font size for tablets */
  }

  .download-button {
    font-size: 28px; /* Adjust button font size */
    padding: 12px 24px; /* Adjust button padding */
  }

  .slideshow {
    max-width: 90%; /* Increase max-width for tablets */
  }

  .caption {
    font-size: 12px; /* Reduce caption font size */
  }

  .slide-image {
    width: 100%; /* Ensure image fits in container */
   
    size-adjust: 30%;
    border-radius: 10px;
  }

  .slideshow {
    position: relative;
    max-width: 60%; /* Adjust max-width for tablets */
    margin: auto;
    overflow: hidden;
  }

  .section-title {
    margin-bottom: 20px;
  }
  
}


/* Responsive for Tablets */
@media screen and (max-width: 1050px) {
  #play {
    padding: 200px 0; /* Adjust padding */
    min-height: 100vh;
  }

  h3{
    margin: 50px 0;
  }

  #play p {
    font-size: 20px; /* Reduce font size for tablets */
  }

  .download-button {
    font-size: 28px; /* Adjust button font size */
    padding: 12px 24px; /* Adjust button padding */
  }

  .slideshow {
    max-width: 90%; /* Increase max-width for tablets */
  }

  .caption {
    font-size: 12px; /* Reduce caption font size */
  }

  .slide-image {
    width: 100%; /* Ensure image fits in container */
   
    size-adjust: 50%;
    border-radius: 10px;
  }

  .slideshow {
    position: relative;
    max-width: 90%; /* Adjust max-width for tablets */
    margin: auto;
    overflow: hidden;
  }

  .section-title p {
    margin: 50px;
    padding: 20px;
  }
  
}

/* Responsive for Mobile */
@media screen and (max-width: 480px) {
  #play {
    padding: 100px 0; /* Adjust padding */
    min-height: 100vh; /* Ensures section takes up at least the viewport height */
  }

  #play p {
    font-size: 18px; /* Adjust font size for mobile */
  }

  .download-button {
    font-size: 24px; /* Reduce button font size */
    padding: 10px 20px; /* Adjust button padding */
  }

  .slideshow {
    max-width: 100%; /* Full-width for mobile */
  }

  .caption {
    font-size: 12px; /* Reduce caption font size */
    bottom: 5px; /* Adjust caption position */
  }
}

/* Careers Main Section */
#careers {
  padding: 300px 0;
  background-image: url(../img/Career.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  text-align: center; /* Center the text */
}

#careers h2 {
  color: #ffe6cc;
  font-size: 42px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

#careers p {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
  margin: 0 auto; /* Center paragraph */
}

/* Careers 2 Section */
#careers2 {
  padding: 100px 0;
  background-image: url(../img/Career\ Second\ Page.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
  text-align: center; /* Center the text */
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 1px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #523a28;
}

.section-title p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 1px;
}

.careers2-item {
  margin-bottom: 50px;
  transition: transform 0.7s ease, box-shadow 0.5s ease;
  flex: 1; /* Ensures all items grow evenly */
  display: flex;
  justify-content: center;

}

.careers2-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

.careers2-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 300px; /* Set a uniform height */
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}
.careers2-desc h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #523a28;
  margin-bottom: 15px;
}

.careers2-desc p:hover {
  font-size: 16px;
  color: #fff;
}

.careers2-desc p {
  font-size: 16px;
  color: #d0d0d0;
  margin-top: 15px;
}

.queries p {
  margin-top: 40px;
  font-size: 30px;
  color: #b0b0b0;
}

.queries a {
  color: #ffcb05;
  text-decoration: none;
}

.queries a:hover {
  text-decoration: underline;
}

/* Responsive for Tablets */
@media screen and (max-width: 768px) {
  #careers {
    padding: 210px 0; /* Reduce padding on tablets */
  }

  #careers h2 {
    font-size: 32px; /* Reduce font size for tablets */
  }

  #careers p {
    font-size: 16px; /* Adjust font size for tablets */
    max-width: 80%; /* Limit paragraph width */
    margin: 0 auto;
  }

  #careers2 {
    padding: 80px 0; /* Adjust padding for tablets */
  }

  .section-title h2 {
    font-size: 30px; /* Adjust section title font size */
  }

  .careers2-item {
    margin-bottom: 30px; /* Reduce margin */
  }

  .careers2-desc h3 {
    font-size: 20px; /* Adjust heading font size */
  }

  .careers2-desc p {
    font-size: 14px; /* Adjust paragraph font size */
  }

  .queries p {
    font-size: 24px; /* Reduce font size for queries */
  }
  .careers2-content {
    min-height: 250px; /* Adjust height for smaller screens */
  }
}

/* Responsive for Tablets */
@media screen and (max-width: 1050px) {
  #careers {
    padding: 200px 0; /* Reduce padding on tablets */
    min-height: 100vh;
  }

  #careers .container {
    padding: 150px 0 0 0 ;
    margin-top: 150px;
  }
}

/* Responsive for Mobile */
@media screen and (max-width: 480px) {
  #careers {
    padding: 20px; /* Further reduce padding */
     min-height: 100vh;
  }

  #careers .container {
    padding: 100px 0 0 0 ;
    margin-top: 150px;
  }

  #careers h2 {
    font-size: 28px; /* Further reduce font size */
  }

  #careers p {
    font-size: 14px; /* Adjust font size for mobile */
    max-width: 90%; /* Limit paragraph width */
    margin: 0 auto;
  }

  #careers2 {
    padding: 60px 0; /* Further reduce padding */
  }

  .section-title h2 {
    font-size: 26px; /* Adjust font size */
  }

  .careers2-item {
    margin-bottom: 20px; /* Reduce bottom margin */
  }

  .careers2-desc h3 {
    font-size: 18px; /* Adjust heading font size */
  }

  .careers2-desc p {
    font-size: 14px; /* Adjust paragraph font size */
  }

  .queries p {
    font-size: 20px; /* Adjust font size for mobile */
  }
  .careers2-content {
    min-height: 200px; /* Further adjust height for mobile */
    padding: 15px; /* Reduce padding for compact view */
  }
}


/* Responsive for Mobile */
@media screen and (max-width: 380px) {
  #careers {
    padding: 50px 0; /* Further reduce padding */
    min-height: 100vh; /* Further reduce padding */
  }

  #careers .container {
    padding: 50px 0 0 0 ;
    margin-top: 50px;
  }

  #careers h2 {
    font-size: 28px; /* Further reduce font size */
  }

  #careers p {
    font-size: 14px; /* Adjust font size for mobile */
    max-width: 90%; /* Limit paragraph width */
    margin: 0 auto;
  }

  #careers2 {
    padding: 60px 0; /* Further reduce padding */
  }

  .section-title h2 {
    font-size: 26px; /* Adjust font size */
  }

  .careers2-item {
    margin-bottom: 20px; /* Reduce bottom margin */
  }

  .careers2-desc h3 {
    font-size: 18px; /* Adjust heading font size */
  }

  .careers2-desc p {
    font-size: 14px; /* Adjust paragraph font size */
  }

  .queries p {
    font-size: 20px; /* Adjust font size for mobile */
  }
  .careers2-content {
    min-height: 200px; /* Further adjust height for mobile */
    padding: 15px; /* Reduce padding for compact view */
  }
}

/* Team Section */
#team {
  padding: 100px 0;
  background-image: url(../img/Team.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}

.container .section-title p {
  font-size: 17px; /* Adjust the font size */
  line-height: 1.6; 
  color: #645434;/* Adjust line height for better readability *//* Set a lighter color for the paragraph text */
  font-family: 'Times New Roman', Times, serif;
  margin: 0 auto; /* Center the paragraph */
  max-width: 800px; /* Set a max width to keep the paragraph from stretching too wide */
  padding: 0 15px; /* Add some padding for better spacing */
}

#team h2 {
  font-size: 40px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #8d6429;
  letter-spacing: 2px;
}

#team .team-container {
  display: flex;
  justify-content: center;
  gap: 50px; /* Adjust gap between team members */
  flex-wrap: wrap;
}

#team .team-member {
  text-align: center;
  width: 250px;
  margin-bottom: 20px;
}

#team .team-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#team .thumbnail {
  background: transparent;
  border: 0;
  
}


#team .thumbnail p {
  color: #ffffff;
  font-style: italic;
  font-weight: bold;
  word-spacing: 10px;
  background-color: #645434;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  letter-spacing: 2px;
}


#team p {
  text-align: center;
}
#team h4 {
  font-size: 20px;
  margin-top: 10px;
  color: #523a28;
}

/* Hover Effects */
#team .team-member:hover .team-img {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive for Tablets */
@media screen and (max-width: 768px) {
  #team h2 {
    font-size: 30px;
  }

  #team .team-img {
    width: 200px;
    height: 200px;
  }

  #team .team-container {
    gap: 15px;
  }

  #team{
    padding: 150px 0;
  }
}

/* Responsive for Tablets */
@media screen and (max-width: 920px) {

  #team{
    padding: 180px 0;
  }

  #team h2{
    font-size: 28px;
    margin-bottom: 0;
  }
  #team h2 {
    font-size: 30px;
  }

  #team .team-img {
    width: 200px;
    height: 200px;
  }

  #team .team-container {
    gap: 15px;
  }
  }

  /* Responsive for Tablets */
@media screen and (max-width: 1050px) {
  #team h2 {
    font-size: 30px;
  }

  #team .team-img {
    width: 200px;
    height: 200px;
  }

  #team .team-container {
    gap: 15px;
  }

  #team{
    padding: 350px 0 0 0;
    min-height: 100vh;
  }
}

/* Responsive for Mobile */
@media screen and (max-width: 480px) {
  #team h2 {
    font-size: 24px;
  }

  #team .team-img {
    width: 150px;
    height: 150px;
  }

  #team .team-container {
    gap: 10px;
  }

  #team {
    padding: 80px 0;
    min-height: 100vh;
  }
}


/* Contact Section */
#contact {
  padding: 100px 0 60px;
  background-image: url(../img/Contact2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center; /* Center text */
  
 
}


#contact h3 {
  color: #ffffff;
  text-decoration-line: underline;
  font-size: 25px;
}

#contact .contact-item a {
  color: #ffffff;
  text-decoration-line: underline;
}

#contact .section-title {
  margin-bottom: 40px;
}

#contact .section-title p {
  font-size: 16px;
  color: #d3cbc4;
}

#contact h2 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 30px;
}

#contact h3 {
  color: #fff;
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: 400;
}

#contact form {
  padding-top: 20px;
}

#contact .text-danger {
  color: #cc0033;
  text-align: left;
}

#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid #fff;
}

#contact .btn-custom:hover {
  color: #1f386e;
  background: #fff;
}

label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  float: left;
}

#contact .form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #444;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

#contact .form-control:focus {
  border-color: #999;
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: transparent;
}

.form-control::-webkit-input-placeholder {
  color: #777;
}

.form-control:-moz-placeholder {
  color: #777;
}

.form-control::-moz-placeholder {
  color: #777;
}

.form-control:-ms-input-placeholder {
  color: #777;
}

#contact .contact-item {
  margin: 20px 0;
}

#contact .contact-item span {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
  display: block;
}

#contact .contact-item i.fa {
  margin-right: 10px;
}

#contact .social {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 50px;
  margin-top: 50px;
  text-align: center;
}

#contact .social ul li {
  display: inline-block;
  margin: 0 20px;
}

#contact .social i.fa {
  font-size: 22px;
  width: 48px;
  height: 48px;
  padding: 12px 0;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

#contact .social i.fa:hover {
  color: #608dfd;
  background: #fff;
}

/* Responsive for Tablets */
@media screen and (max-width: 768px) {
  #contact {
    padding: 150px 0; /* Reduce padding */
  }

  #contact h2 {
    font-size: 30px; /* Adjust font size */
  }

  #contact .contact-item {
    margin: 15px 0; /* Adjust margin */
  }

  #contact .section-title p {
    font-size: 14px; /* Adjust paragraph size */
  }

  #contact h3 {
    font-size: 20px; /* Adjust subheading font size */
    margin-top: 60px;
  }

  #contact .form-control {
    font-size: 14px; /* Adjust font size of inputs */
  }

  #contact .social ul li {
    margin: 0 15px; /* Adjust social media icon spacing */
  }

  #contact .social i.fa {
    font-size: 18px; /* Reduce icon size */
    width: 40px;
    height: 40px;
    padding: 10px 0;
  }
}


/* Responsive for Tablets */
@media screen and (max-width: 920px) {
  #contact {
    padding: 150px 0; /* Reduce padding */
  }
  }
/* Responsive for iPad Air (max-width: 1050px) */
@media screen and (max-width: 1050px) {
  #contact {
    padding: 100px 20px; /* Reduce overall padding */
    text-align: center; /* Ensure centered alignment */
  }

  #contact h2 {
    font-size: 26px; /* Adjust main heading font size */
    line-height: 1.4; /* Improve readability */
    margin-bottom: 15px; /* Add consistent spacing */
  }

  #contact h3 {
    font-size: 20px; /* Adjust subheading size */
    margin-top: 40px;
    margin-bottom: 20px;
  }

  #contact .section-title p {
    font-size: 14px; /* Scale down font size */
    margin-bottom: 25px; /* Reduce spacing */
  }

  #contact .contact-item {
    margin: 10px 0; /* Minimize margin for better compactness */
    text-align: left; /* Align text to left if needed */
  }

  #contact .form-control {
    font-size: 14px; /* Keep inputs readable */
    padding: 10px; /* Optimize padding */
  }

  #contact .btn-custom {
    padding: 8px 20px; /* Scale button padding */
    font-size: 14px; /* Adjust button font size */
    margin: 15px 0; /* Ensure consistent spacing */
  }

  #contact .social ul {
    padding: 0;
    margin: 20px auto;
    display: flex; /* Use flexbox for icons */
    justify-content: center; /* Center icons */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
  }

  #contact .social ul li {
    margin: 0 10px; /* Adjust spacing between icons */
  }

  #contact .social i.fa {
    font-size: 18px; /* Reduce icon size */
    width: 40px; /* Adjust dimensions */
    height: 40px;
    padding: 10px; /* Center icon inside circle */
  }
}

/* Responsive for iPad Pro (max-width: 1050px) */
@media screen and (max-width: 1050px) {
  #contact {
    padding: 250px 15px; /* Reduce overall padding */
    text-align: center; /* Ensure centered alignment */
  }

  #contact h2 {
    font-size: 28px; /* Adjust heading font size */
    line-height: 1.4; /* Improve line spacing for readability */
    margin-bottom: 20px; /* Adjust spacing below heading */
  }

  #contact h3 {
    font-size: 22px; /* Scale down subheading */
    margin-top: 50px;
    margin-bottom: 20px;
  }

  #contact .section-title {
    margin-bottom: 30px; /* Reduce spacing below the section title */
  }

  #contact .section-title p {
    font-size: 14px; /* Adjust paragraph font size */
    margin-bottom: 15px; /* Adjust paragraph spacing */
  }

  #contact .contact-item {
    margin: 15px 0; /* Reduce spacing between contact items */
    text-align: left; /* Optionally align text to the left */
  }

  #contact .form-control {
    font-size: 14px; /* Adjust input font size */
    padding: 10px; /* Increase padding for better touch usability */
  }

  #contact .btn-custom {
    margin: 20px 0; /* Adjust spacing around the button */
    padding: 10px 25px; /* Adjust button padding */
    font-size: 14px; /* Reduce button text size */
  }

  #contact .social ul {
    padding: 0;
    margin: 20px auto;
    display: flex; /* Use flexbox for better alignment */
    justify-content: center; /* Center align social icons */
    flex-wrap: wrap; /* Allow wrapping if space is limited */
  }

  #contact .social ul li {
    margin: 0 15px; /* Adjust spacing between social icons */
  }

  #contact .social i.fa {
    font-size: 20px; /* Adjust icon size */
    width: 42px; /* Adjust icon container dimensions */
    height: 42px;
    padding: 10px; /* Center icon within the container */
  }

  #contact .section-title h2::after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.3);
    height: 4px;
    width: 60px;
    bottom: 0;
    left: 30px;
  }
}



/* Responsive for Mobile */
@media screen and (max-width: 480px) {
  #contact {
    padding: 100px 0; /* Reduce padding further */
  }

  #contact h2 {
    font-size: 24px; /* Further adjust heading font size */
  }

  #contact h3 {
    font-size: 18px; /* Adjust subheading font size */
  }

  #contact .contact-item {
    margin: 10px 0; /* Adjust margin */
  }

  #contact .form-control {
    font-size: 14px; /* Adjust input field font size */
  }

  #contact .social ul li {
    margin: 0 10px; /* Adjust spacing for smaller screens */
  }

  #contact .social i.fa {
    font-size: 16px; /* Smaller icons */
    width: 36px;
    height: 36px;
    padding: 8px 0;
  }
}
/* Footer Section */
#footer {
  background: #f6f6f6;
  padding: 30px 0;
}

#footer p {
  color: #888;
  font-size: 14px;
  text-align: center; /* Center text for smaller screens */
}

#footer a {
  color: #608dfd;
}

#footer a:hover {
  border-bottom: 2px solid #608dfd;
}

/* Navbar Responsiveness */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 50px;
  margin-right: 10px;
}

.navbar-text {
  font-size: 16px;
}

/* Responsive for Tablets */
@media (max-width: 768px) {
  #footer p {
    font-size: 12px; /* Adjust font size for tablets */
    padding: 10px 0; /* Add padding for better spacing */
  }

  .navbar-brand {
    justify-content: center; /* Center brand on smaller screens */
  }

  .navbar-text {
    font-size: 14px; /* Adjust font size for better readability */
  }

  #footer {
    padding: 20px 0; /* Reduce padding for tablets */
  }
}

/* Responsive for Mobile */
@media (max-width: 480px) {
  #footer p {
    font-size: 12px; /* Further reduce font size on mobile */
    text-align: center; /* Center text for smaller screens */
    padding: 5px 0; /* Reduce padding */
  }

  .navbar-logo {
    height: 40px; /* Adjust logo size for mobile */
    margin-right: 8px;
  }

  .navbar-text {
    font-size: 14px; /* Adjust font size for mobile */
  }

  #footer {
    padding: 15px 0; /* Further reduce padding for mobile */
  }

  /* Navbar adjustments for mobile */
  .navbar-brand {
    justify-content: center; /* Center the navbar items */
    width: 100%; /* Make navbar brand take full width */
  }
}

#contact, footer {
  overflow: visible;
}


