 
body {
            font-family: Arial, Helvetica, sans-serif;
            margin: 0;
            padding: 0;
            background-image: url('images.jpg'); 
            background-size: cover; 
            background-position: center center; 
            background-attachment: fixed; 
            color: #fff; 
        }

        .topnav {
          overflow: hidden;
          background-color: #901b0c; 
        }

        .topnav a {
          float: left;
          display: block;
          color: #f2f2f2;
          text-align: center;
          padding: 17px 18px;
          text-decoration: none;
          font-size: 20px;
        }

        .topnav a.active {
          background-color: #2686C1;
          color: white;
        }

        .topnav .icon {
          display: none;
        }

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .topnav a:not(:first-child) {
        display: none;
    }
    .topnav a.icon {
        float: right;
        display: block;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}


/* Logo & Title Section */

         body {
            font-family: Arial, Helvetica, sans-serif;
            margin: 0;
            padding: 0;
            background-image: url('images.jpg'); 
            background-size: cover; 
            background-position: center center; 
            background-attachment: fixed; 
            color: #fff; 
        }

        .header {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff; 
            padding: 15px;
        }

     .header img {
  height: 80px;
  width: auto;
  margin-right: 10px;
}

       .header h2 {
    margin: 0;
    font-size: 30px; /* Reduced title size */
    font-family: Gabriola;
    font-weight: bold;
    color: #990000;
}

        .header {
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    font-family: Bookman Old Style;
    font-size: 48px;
}
.header img {
    margin-right: 10px; 
    font-size: 36px; 
    font-family: 'Georgia', serif; 
    font-weight: bold; 
    color: #333; 
}



.header h2 {
    margin: 0; 
    font-size: 30px; 
    font-family: Gabriola; 
    font-weight: bold; 
    color: #990000; 
}

/* Reset and Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Body Styling */
body {
  min-height: 100vh;
  width: 100%;
  background: #EEECEB;
  color: #333;
  line-height: 1.6;
  margin: 0; /* Ensures no top space */
  padding: 0;
  font-family: 'Arial', sans-serif; /* You can keep this or merge with Poppins */
}

.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent;
  padding: 0px; /* Only horizontal padding */
  font-family: 'Bookman Old Style', serif;
}

.header img {
  height: 50px;
  margin-right: 10px;
}

.header h1 {
  margin: 0;
  font-size: 48px;
  font-family: 'Gabriola', cursive;
  font-weight: bold;
  color: #990000;
}
/* Video Background */
.video-background {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.feature-card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    background-color: #e6e6e6; /* Set the background color */
    padding: 20px;
}

.feature-card {
    background-color: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(33% - 20px); /* Adjust width for responsiveness */
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h2,
.feature-card h3 {
    color: #990000; /* Set the heading color */
}

.feature-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .feature-card {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .feature-card {
        width: 100%;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .feature-card {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 480px) {
    .feature-card {
        width: 100%;
    }
}


.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.overlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 18px;
    font-weight: 300;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fafafa; /* Light background for a peaceful feel */
    color: #333; /* Dark color for text readability */
    padding-top: 60px; /* Adds space below fixed header */
}

/* Section Styling */
.about-us {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
    margin: 0 auto;
}

h2 {
    font-size: 48px;
    color: #6b4226; /* Deep earthy brown */
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

h3 {
    font-size: 36px;
    color: #990000; /* Rich earthy color */
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* About Us Section */
.about-us {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

h2 {
    font-size: 48px;
    color: #990000;
    margin-bottom: 20px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Card Styles */
.card {
    background-color: #e6e6e6; /* Updated card background color to white */
    color: #333; /* Ensure text color is visible against white background */
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #990000; /* Set h3 color to #990000 */
}

.card p {
    font-size: 16px;
}

/* Our Values Section */
.our-values {
    padding: 80px 20px;
    background-color: #f4f4f4; /* Soft background color */
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.our-values h2 {
    font-size: 48px;
    color: #990000; /* Earthy brown for headers */
    margin-bottom: 20px;
    font-weight: 700;
}

    
       
.container {
            width: 90%;
            margin: 0 auto;
            padding: 20px;
        }

        .founder-section {
            background-color: #f2f2f2;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-top: 40px;
            max-width: 1300px; /* Increased max-width for a wider box */
            margin-left: auto;
            margin-right: auto;
            height: 400px;
        }

        .founder-image {
            width: 400px; /* Larger box for image */
            height: 500px;
            overflow: hidden;
            margin-right: 50px;
            border-radius: 8px;
        }

        .founder-image img {
            width: 100%;
            height: 70%;
            object-fit: cover;
        }

        .founder-info {
            max-width: 800px; /* Wider info box */
        }

        .founder-info h2 {
            margin: 0;
            font-size: 32px;
            color: #990000; /* Text color */
        }

        .founder-info p {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
            margin-top: 15px;
        }

        .founder-info p strong {
            color: #990000;
        }




footer {
  position: relative;
  background: #990000 ;
  width: 100%;
  bottom: 0;
  left: 0;
}

footer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 2px;
  width: 100%;
  background: #AFAFB6;
}

footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}

footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.content .top .logo-details {
  color: #fff;
  font-size: 30px;
}

.content .top .media-icons {
  display: flex;
}

.content .top .media-icons a {
  height: 30px;
  width: 30px;
  margin: 0 8px;
  border-radius: 30%;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.s ease;
}

.top .media-icons a:nth-child(1) {
  background: #4267B2;
}

.top .media-icons a:nth-child(1):hover {
  color: #4267B2;
  background: #fff;
}

.top .media-icons a:nth-child(2) {
  background: #1DA1F2;
}

.top .media-icons a:nth-child(2):hover {
  color: #1DA1F2;
  background: #fff;
}

.top .media-icons a:nth-child(3) {
  background: #E1306C;
}

.top .media-icons a:nth-child(3):hover {
  color: #E1306C;
  background: #fff;
}

.top .media-icons a:nth-child(4) {
  background: #0077B5;
}

.top .media-icons a:nth-child(4):hover {
  color: #0077B5;
  background: #fff;
}

.top .media-icons a:nth-child(5) {
  background: #FF0000;
}

.top .media-icons a:nth-child(5):hover {
  color: #FF0000;
  background: #fff;
}

footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer .content .link-boxes .box {
  width: calc(100% / 5 - 10px);
}

.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.link-boxes .box .link_name::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}

.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
}

.content .link-boxes .box li a {
  color: #fadbd8;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.content .link-boxes .input-box {
  margin-right: 55px;
}

.link-boxes .input-box input {
  height: 40px;
  width: 100%; /* Fixed to avoid overflow */
  outline: none;
  border: 2px solid #AFAFB6;
  background:#fadbd8;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color:#AFAFB6 ;
  margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
  color: #17202a;
  font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
  background: #fadbd8;
  color: #140B5C;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
  opacity: 1;
}

footer .bottom-details {
  width: 100%;
  background: #922b21 ;
}

footer .bottom-details .bottom_text {
  max-width: 1210px;
  margin: auto;
  padding: px 40px;
  display: flex;
  justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fadbd8 ;
  opacity: 0.8;
  text-decoration: none;
}

.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bottom-details .bottom_text a {
  margin-right: 10px;
}

@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box {
    width: 20%;
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  footer {
    position: relative;
  }
  .content .top .logo-details {
    font-size: 26px;
  }
  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  footer::before {
    top: 145px;
  }
  footer .content .top {
    flex-direction: column;
  }
  .content .top .media-icons {
    margin-top: 16px;
  }
  footer .content .link-boxes .box {
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box {
    width: 100%;
  }
}


    

