*{
    margin: 0;
    padding: 0;
}
/*navbar start*/

/* Container styling */
.container {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Navbar layout */
.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
  background-color: #f9f9f9;
}

/* Logo style */
.logo h2 {
  font-size: 24px;
  margin: 0;
  color: #333;
  text-align: center;
}

/* Icons layout */
.icons {
  display: flex;
  gap: 15px;
}

.icons img {
  transition: transform 0.2s ease;
}

.icons img:hover {
  transform: scale(1.1);
}

/* Responsive styling for mobile */
@media (max-width: 768px) {
  .navbar-top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .icons {
    justify-content: center;
  }

  .logo h2 {
    font-size: 20px;
  }
}


/* navbar top */
/*contact form */

/* Reset default spacing and fix overflow */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* Contact Section Layout */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

/* Contact Info (Left) */
.contact-info {
  flex: 1;
  background-color: #fff;
  padding: 40px;
  color: #333;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #111;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item img {
  width: 24px;
  margin-right: 15px;
}

/* Form (Right) */
.form-container {
  flex: 1;
  background-color: #C2A86F;
  padding: 40px;
  color: white;
}

.form-container h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0 20px;
  border: none;
  border-radius: 4px;
}

form button {
  background-color: black;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #444;
}

/* Mobile View */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
}


/*end of contact form */

/* Animated Heading */
.animated-heading {
  font-size: 2.5rem;
  font-weight: bold;
  animation: fadeInSlide 1.5s ease-in-out;
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Filter Buttons */
.filter-btn {
  border: 2px solid #007bff;
  color: #007bff;
  background-color: transparent;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #007bff;
  color: #fff;
}

.filter-btn.active {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
}

/* Hide class for filtering */
.gallery-item.hide {
  display: none !important;
}


/*tecxr*/

.animated-heading {
  font-size: 2.5rem;
  font-weight: bold;
  animation: fadeInSlide 1.5s ease-in-out;
  text-align: center;
  margin-bottom: 20px;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

h1.animated-heading {
  color: red;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}


.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.floating-whatsapp:hover {
  background-color: #1ebc5c;
  transform: scale(1.1);
}
.floating-whatsapp i {
  vertical-align: middle;
}


.nav-link {
  font-weight: bold;
}

/* main content */
.main-content{
    width: 100%;
    height: 90vh;
    background-image: url(./image/background.jpg);
    background-size: cover;
    background-position: 70%;
}

/* navbar */
#navbar-color{
    background-color: rgb(227, 130, 19);
}
.navbar-nav{
    margin: auto;
}
.nav-link{
    margin-left: 30px;
    font-weight: bold;
    color: black;
    transition: 0.5s ease;
    cursor: pointer;
}
.nav-link:hover{
    color: green;
}
/* navbar */

/* content */
.content{
    margin-top: 150px;
    margin-left: 60px;
}
.content h1{
    font-size: 50px;
}
#btn1 button{
    width: 150px;
    height: 32px;
    background: transparent;
    border: 1px solid black;
    letter-spacing: 3px;
    font-weight: bold;
    transition: 0.5s ease;
    cursor: pointer;
}
#btn1 button:hover{
    background-color: green;
}
@media screen and (max-width:420px){
    .content h1{
        font-size: 30px;
    }
}
/* content */

/* main content */

/* card1 */
#btn2 button{
    width: 100px;
    height: 30px;
    background: transparent;
    border: 1px solid black;
    transition: 0.5s ease;
    cursor: pointer;
}
#btn2 button:hover{
    background-color: rgba(238,224,208);
}
/* card1 */

/* card2 */
#tpc{
    box-shadow: 0 0 5px black;
    transition: 0.5s ease;
    cursor: pointer;
}
#tpc:hover{
    transform: translateY(-10px);
}
/* card2 */

/* card3 */
#c p{
    font-weight: bold;
}
#btn3{
    text-align: center;
}
#btn3 button{
    width: 150px;
    height: 30px;
    background: transparent;
    border: 1px solid black;
    transition: 0.5s ease;
    cursor: pointer;
}
#btn3 button:hover{
    background-color: rgba(238,224,208);
}
@media screen and (max-width:895px){
    #btn3 button{
        width: 100px;
    }
}
/* card3 */
#btn4 button{
    width: 150px;
    height: 30px;
    background: transparent;
    border: 1px solid black;
    transition: 0.5s ease;
    cursor: pointer;
}
#btn4 button:hover{
    background-color: rgba(238,224,208);
}
/* footer */
#footer{
    width: 100%;
    background-color: black;
    margin-top: 100px;
}
#footer h1{
    color: white;
    padding-top: 30px;
}
#footer p{
    color: white;
}
.icons i{
    color: rgba(238,224,208);
    font-size: 30px;
    cursor: pointer;
}
.copyright{
    color: white;
    margin-top: 20px;
}
.credite{
    color: white;
}
/* footer */

/* --- Improvements for Mobile Responsiveness --- */

/* Navbar Top Flex Fix */
.navbar-top {
  flex-wrap: wrap;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .navbar-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo h2 {
    font-size: 18px;
  }
}

/* Hero Content Responsiveness */
@media screen and (max-width: 768px) {
  .content {
    margin: 50px 20px;
  }
  .content h1 {
    font-size: 28px;
  }
  .content h2 {
    font-size: 18px;
  }
}

/* Card Responsiveness Enhancements (recommend HTML class tweak too) */
/* No CSS changes here, but .col-md-4 in HTML should become col-12 col-sm-6 col-md-4 */

/* Floating WhatsApp Position Fix */
@media screen and (max-width: 420px) {
  .floating-whatsapp {
    bottom: 15px;
    right: 10px;
    padding: 10px 12px;
    font-size: 22px;
  }
}