/* General Styles */
body {
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #ef664d; */
    color: #333;
    padding-top: 100px; /* Adjusted for fixed header */
}

header {
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Increased padding for better appearance */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 600;
}



.logo {
    /* text-align: center;
    font-size: medium; */
    width: 20%;
    height: auto;
    margin-left: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;

}

.logo img {
    width: 40%; /* Reduced logo size */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 30px;
    padding: 10px;
    
}

nav ul li {
    margin: 0 20px;
    
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 24px; /* Adjusted font size for better responsiveness */
    margin-right: 10px; /* Reduced margin */
}

@media (max-width: 768px) {
    nav ul li a {
        font-size: 18px; /* Smaller font size for mobile */
    }
}


nav ul li a:hover {
    color: #f4b400;
}

/* Sections - Full Screen Height */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #7e32cf, #949dae);
    color: white;
}

.hero h1 {
    font-size: 50px;
    font-weight: inherit;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #f4b400;
    padding: 5px 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.hero .btn:hover {
    background-color: #ff9800;
    transform: scale(1.05);
}

/* About Section */
#about {
    background-color: #f4f4f4;
}

.team {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 250px;
}

/* Blog Section */
#blog {
    background-color: white;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.blog-post {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    max-width: 300px;
}

/* Contact Section */
#contact {
    background-color: #e54a4a;
    padding: 50px 20px;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #000;
}

.contact-info p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}
.contact-body{
    background-color: red;
}
form {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border: 4px solid black;
    border-radius: 10px;
    background-color: white;
}

form label {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

form input,
form textarea {
    padding: 12px;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
}

form button {
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background-color: #222;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border-radius: 5px;
}

form button:hover {
    background-color: #444;
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    margin-top: 25px;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Section Specific Styles */
#home {
    margin-top: 100px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    background: linear-gradient(to right, #385ed8, #046e9f); /* Gradient using #2596be and a darker shade */
    color: white;
    padding: 100px 5%;
}

#home h2 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1s ease-in-out forwards;
    margin-top: 30px;
}

#home p {
    font-size: 25px;
    margin-bottom: 20px;
}

#home ul {
    list-style-type: disc;
    padding-left: 20px;
    max-width: 700px;
}

#home ul li {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1s ease-in-out 0.5s forwards;
    color: #ffcc00;
}

#home .btn {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    background-color: #f4b400;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1s ease-in-out 1s forwards;
}

#home .btn:hover {
    background-color: #ff9800;
    transform: scale(1.05);
}

/* Services Section */
.service-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.dropdown {
    position: relative;
    display: inline-block;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    background: #222;
    color: white;
    margin: 5px;
    border-radius: 5px;
}

.submenu {
    display: none;
    position: absolute;
    left: 0;
    background: #444;
    color: white;
    padding: 10px;
    list-style: none;
    min-width: 200px;
    border-radius: 5px;
    text-align: left;
}

.dropdown:hover .submenu {
    display: block;
}

.submenu li {
    padding: 5px 10px;
}

.submenu li:hover {
    background: #666;
}
/* Hero Section */
.hero {
    background: linear-gradient(to right, #7e32cf, #949dae);
    color: white;
    padding: 100px ; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150vh;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px; /* Space between text and image */
    padding: 0px 18.67px;
}

.text-content {
    flex: 1;
    text-align: left;
}

.text-content h1 {
    font-size: 50px;
    font-weight: inherit;
    margin-bottom: 20px;
}

.text-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.text-content .btn {
    background-color: #f4b400;
    padding: 12px 25px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.text-content .btn:hover {
    background-color: #ff9800;
    transform: scale(1.05);
}

.image-content {
    flex: 1;
    text-align: right;
    
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#home {
    margin-top: 100px;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    background: linear-gradient(to right, #385ed8, #046e9f); /* Gradient using #2596be and a darker shade */
    color: white;
    padding: 100px 5%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 80px; /* Increased gap between text and image */
    padding: 0 5%; /* Added padding to ensure content doesn't touch the edges */
}

.text-content {
    flex: 1;
    text-align: left;
    max-width: 600px; /* Limit text width for better readability */
}

.text-content h1 {
    font-size: 50px;
    font-weight: inherit;
    margin-bottom: 20px;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.text-content .btn {
    background-color: #f4b400;
    padding: 12px 25px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.text-content .btn:hover {
    background-color: #ff9800;
    transform: scale(1.05);
}

.image-content {
    flex: 1;
    text-align: right;
    margin-right: -10%; /* Move the image further to the right */
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 1 8px 5px rgba(0, 0, 0, 0.2);
}
#changingWord{
    color: red;
}
#about {
    background-color: #f4f4f4;
    padding: 100px 20px;
    text-align: center;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.bold-statement {
    font-size: 24px;
    font-weight: bold;
    color: #2596be; /* Highlight the bold statement with your primary color */
    margin-bottom: 30px;
}

#about p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.team {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2596be; /* Use your primary color for headings */
}

.team-member p {
    font-size: 16px;
    color: #666;
}
#blog {
    background-color: white;
    padding: 100px 20px;
    text-align: center;
}

#blog h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.blog-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-post {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 400px;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-box {
    padding: 20px;
    text-align: left;
}

.blog-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2596be; /* Use your primary color */
}

.blog-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.blog-image {
    width: 100%;
    height: 300px;
    display: block;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#services {
    background-color: #fff;
    padding: 100px 20px;
    text-align: center;
}

#services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-item {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 400px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    padding: 20px;
    text-align: left;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2596be; /* Use your primary color */
}

.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content ul li {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-content ul li::before {
    content: "•";
    color: #2596be; /* Use your primary color */
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}
#services p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}
/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 10px 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1px;
    max-width: 1500px;
    margin:  5px 5px;
    overflow: hidden;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 50px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #f4b400;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact ul li {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #f4b400;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: #f4b400;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    color: white;
    font-size: 24px;
    transition: color 0.3s, transform 0.3s;
}

.footer-social .social-icons a:hover {
    color: #f4b400;
    transform: translateY(-5px);
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #ddd;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom i.fa-heart {
    color: #ff4d4d;
}
/* Default styles for all screen sizes */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    background-image: url(logo_dark_with_bg.svg);
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}




/* styles.css */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  /* Navbar Styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: .5rem 1rem;
    color: white;
  }
  
  .navbar-brand a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
.navbar-menu {
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px; /* Reduced padding for better responsiveness */
}

  
  .navbar-menu li {
    margin-left: 20px;
  }
  
  .navbar-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  
  .navbar-menu li a:hover {
    color: #ff6347; /* Change to your preferred hover color */
  }
  
  /* Toggle Button Styling */
  .navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  } 
   
  /* Responsive Styles */
  @media (max-width: 768px) {
    .navbar-menu {
      display: none; /* Ensure the menu is hidden by default */
      flex-direction: column;
      width: 100%;
      background-color: #444;
      position: absolute;
      top: 100px; /* Adjust based on your navbar height */
      left: -100%;
      padding-block: 20px;
    }

    .navbar-menu.active {
      display: flex; /* Show the menu when active */
      left: 0; /* Position the menu correctly */
    }

  
    .navbar-menu.active {
      left: 0;
    }
  
    .navbar-toggle {
      display: block;
    }
  
    .navbar-menu li {
      margin: 10px 0;
      text-align: center;
    }
  }
  
  /* Hero Section */
  .hero-section {
    background: url('default-image.jpg') no-repeat center center/cover; /* Default image */
    color: white;
    padding: 100px 20px;
    text-align: center;
    transition: background-image 0.5s ease; /* Smooth transition for image change */
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e5533d;
  }
  .navbar-menu {
    display: flex;
    list-style: none;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
    }

    .navbar-menu.active {
        display: flex;
    }
}
