* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
    }

    nav {
      background-color: white;
      border-bottom: 1px solid #ddd;
      padding: 15px 40px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-container {
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: bold;
      color: #222;
    }

    .logo img {
      height: 40px;
      width: auto;
      border-radius: 50%;
	    border:1px;
    }

    .nav-links {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    .nav-links a,
    .dropbtn1 {
      text-decoration: none;
      color: #222;
      font-size: 16px;
      font-weight: 500;
      transition: color 0.3s;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px 0;
    }

    .nav-links a:hover,
    .dropbtn1:hover {
      color: #007bff;
    }

    .dropdown1 {
      position: relative;
    }

    /* Down arrow using CSS */
    .dropbtn1::after {
      content: " ▼";
      font-size: 12px;
    }

    .dropdown-content1 {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
    }

    .dropdown-content1 a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }

    .dropdown-content1 a:hover {
      background-color: #f1f1f1;
    }

    .dropdown1:hover .dropdown-content1 {
      display: block;
    }
  

    
.socialline {
    background-color:white;
	padding:10 0 10 0px;
	color:solid black;
	font-size:10px;
	margin-top:10px;
	text-decoration: none;
	margin:0;
	  border-bottom: 1px solid #ddd;
}


.social {
    float:right;
	margin-right:7px;
	
}  

.socialcall {
    margin-left:160px;
}
.socialmail{
    margin-left:20px;
} 

.social1 {
    margin-right:160px;
	 float:right;
}
.acol {
    text-decoration: none;
	color:#c9c9c9;
}
.socialgap {
    padding:8px;
}

 
    footer {
      background: #222;
      color: white;
      padding: 20px;
      text-align: center;
      margin-top: 40px;
    }
    /* Mobile menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

   .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #333;
      margin: 4px 0;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      padding: 10px 40px;
      font-size: 16px;
    }

    .mobile-menu a,
    .mobile-menu .dropbtn1 {
      padding: 10px 0;
      border-top: 1px solid #eee;
      text-decoration: none;
      color: #000;
      background: none;
      border: none;
      text-align: left;
    }

    .mobile-menu .dropdown-content1 {
      position: static;
      box-shadow: none;
      background-color: transparent;
      padding-left: 10px;
    }

    .mobile-menu .dropdown-content1 a {
      padding: 8px 0;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-menu.active {
        display: flex;
      }
    } 
 .video-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Container to center text and buttons */
.banner-center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

/* Text styling */
.banner-text {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 34px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Buttons container */
.cta-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Button styles */
.cta-button,
.cta-button2 {
  padding: 12px 28px;
  font-size: 17px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
  border: 2px solid;
}

.cta-button {
  border-color: #4CAF50;
  background-color: transparent;
}

.cta-button:hover {
  background-color: #4CAF50;
}

.cta-button2 {
  border-color: #4f66e8;
  background-color: transparent;
}

.cta-button2:hover {
  background-color: #4f66e8;
}

    .section-title {
      font-size: 36px;
      margin: 40px auto 20px;
      text-align: center;
      color: #eaa555;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 20px;
    }

    .card {
      position: relative;
      overflow: hidden;
      border: 2px solid #555;
      border-radius: 8px;
      height: 250px;
      background: #000;
      display: flex;
      flex-direction: column;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: filter 0.3s;
      filter: grayscale(100%);
    }

    .card:hover img {
      filter: grayscale(0%);
    }

    .card-text {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 12px;
    }

    .card-text h3 {
      font-size: 16px;
      margin-bottom: 5px;
      color: #eaa555;
    }

    .card-text p {
      font-size: 13px;
    }

    @media (max-width: 600px) {
      .video-banner {
        height: 250px;
      }

      .section-title {
        font-size: 28px;
      }

      .card-text h3 {
        font-size: 14px;
      }

      .card-text p {
        font-size: 12px;
      }

      .grid {
        grid-template-columns: 1fr;
      }
       .banner-text {
        font-size: 22px;
        padding: 10px 20px;
        max-width: 300px;
      }
    }

@media (max-width: 780px){
 .logo {
      font-size: 14px;
     
    }
.socialline {
    padding:10 0 10 0px;
	font-size:7px;
	margin-top:0px;
	text-decoration: none;
}


.social {
    float:right;
	margin-right:7px;
	
}  

.socialcall {
    margin-left:19px;
}
.social1 {
    margin-right:2px;
	
}
.container4 {
    padding: 15px;
}
input, textarea {
    font-size: 14px;
}
button {
    font-size: 14px;
}
}