/* Importing Google Fonts for use throughout the website */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Universal selector resets: sets margin and padding to 0, applies box-sizing to border-box for easier dimension calculations, and sets a default font family */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}
/* Body styling: sets a light background color for better readability */
body {
  background-color: #FAF4F4; /* Light background for ease of reading */
}
/* Header elements styling: specifies font size, line height, and color */

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #333;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #333; /* Dark grey color for strong visibility */
}

h4 {
    font-size: 20px;
    color: #333; 
}

h6 {
    font-weight: 700; /* Bold weight for emphasis */
    font-size: 12px; /* Smallest heading size for less critical titles or labels */
}

/* Paragraph styling: sets font size, text color, and margin for text content */


p {
    font-size: 16px;
    color: #555;
    margin: 15px 0px 80px;
}
/* Section padding: adds padding to sections for spacing inside containers */
.section-p1 {
    padding: 40px 80px;
}
/* Section margin: adds margin to sections to space them apart from each other */
.section-m1 {
    margin: 40px 0;
}
/* Button styling: detailed styling for buttons to make them visually appealing and interactive */
button.normal{
  font-size: 14px; 
  font-weight: 600; /* Semi-bold for better visibility */
  padding: 15px 30px; /* Sufficient padding for a comfortable clickable area */
  color: #FFF; /* White text for contrast */
  background-color: #5D93E1;/* Bright blue background for attention */
  border-radius: 4px;
  cursor: pointer; /* Changes cursor to indicate clickable */
  border: none;
  outline: none; /* Removes focus outline for custom styling */
  transform: 0.2s; /* Smooth transition for interactive effects, although more detail is needed here */

}

/* Header setup with flexbox for alignment and spacing, along with sticky positioning for visibility at the top of the page */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #FFFFFF;
    box-shadow: 0 5px 15px 15px rgba(0, 0, 0, 0.1);
    z-index: 999; /* Ensures header stays above other content */
    position: sticky; /* Stays at the top of the page when scrolling */
    top: 0;
    left: 0;
}
/* Styles for the logo to ensure it scales properly and maintains aspect ratio */
.logo{
  width: 50%; /* Sets logo width to half of its container's width */
  height: auto; /* Keeps the aspect ratio of the logo */
}

/* Navbar styling with flexbox for a horizontal layout */
.navbar {
    display: flex; /* Enables flexible box layout */
    overflow: hidden; /* Hides overflowing content */
    align-items: center; /* Vertically aligns navbar items */
    justify-content: space-between; /* Distributes items evenly */
}
/* Removes default list styling and adds horizontal spacing */

.navbar li {
    list-style: none;
    padding: 0 20px; /* Adds horizontal padding */
    position: relative; /* Allows positioning of pseudo-elements */
}
/* Styles for navbar links */
.navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    transition: color 0.3s ease; /* Smooth color transition on hover */
}
/* Hover and active link styling */
.navbar li a:hover,
.navbar li a.active {
    color: #4CAF50; /* Changes text color on hover/active */
    width: 100%;
}
/* Underline effect for active link */
.navbar li a.active::after {
    content: ""; /* Necessary for pseudo-elements */
    position: absolute; /* Positions pseudo-element relative to its parent */
    bottom: -4px; /* Positions the underline below the text */
    left: 0; /* Aligns the underline to the left edge */
    width: 0; /* Initial width set to 0 for animation */
    height: 2px; /* Thickness of the underline */
    background: #088178; /* Color of the underline */
    transition: all 0.1s ease; /* Smooth transition for the underline */
    transform: translateX(-10%); /* Starts the animation slightly to the left */
    display: block; /* Makes the pseudo-element display as a block */
}




/* Responsive styles for screens that are 768px wide or less */
@media (max-width: 768px) {
    .navbar {
        /* Collapses the navbar into a vertical layout */
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar li {
        /* Stacks the links on top of each other */
        display: block;
        width: 100%;
    }

    .navbar li a {
        /* Ensures the links take up the full width of the menu */
        display: block;
        width: 100%;
        text-align: left; /* Aligns text to the left */
    }

    /* This is for the hamburger menu icon */
    .hamburger-menu {
        display: block; /* Shows the hamburger menu */
        cursor: pointer;
    }

    /* Styles to hide the menu initially */
    .navbar ul {
        display: none;
    }

   
}

/* This style will show the menu when the hamburger is clicked */
.menu-expanded .navbar ul {
    display: flex; 
    flex-direction: column;
}

/* HERO SECTION */
/* Sets the hero background, size, and positioning. Ensures full-screen height and responsive background image. */

#hero {
    background-image: url(img/hero11.jpg); /* Background image for the hero section */
    height: 100vh; /* Full viewport height */
    width: 100%; /* Full viewport width */
    background-size: cover;
    background-position: top 25% right 0; /* Adjusts the position of the background image */
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #EEE; 
    color: #333;
}
/* Styles for different text elements within the hero section, adjusting sizes for a visual hierarchy. */

#hero h4 {
    font-size: 1.5em; /* Example base size, adjust as needed */
	padding-bottom: 15px;
	
}

#hero h1 {
    color: #32b91a;
	font-size: 3em;
}
#hero h2 {
  font-size: 2em; /* Example base size, adjust as needed */
}
#hero p {
  font-size: 1em; /* Example base size, adjust as needed */
}


/* Responsive Text Size Adjustments for Various Elements within the Hero Section */
/* Adjusts the sizes of h1, h2, h4, and paragraph elements for different screen sizes */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2em; /* More reduced size for smaller screens */
  }

  #hero h2 {
    font-size: 1.5em; /* More reduced size for smaller screens */
  }

  #hero h4 {
    font-size: 1em; /* More reduced size for smaller screens */
  }

  #hero p {
    font-size: 0.8em; /* More reduced size for smaller screens */
  }
}

/* Media query for iPhone and similar narrow devices */
@media (max-width: 480px) {
  #hero h1 {
    font-size: 1.5em; /* Further reduced size for very small screens */
  }

  #hero h2 {
    font-size: 1.2em; /* Further reduced size for very small screens */
  }

  #hero h4 {
    font-size: 0.9em; /* Further reduced size for very small screens */
  }

  #hero p {
    font-size: 0.7em; /* Further reduced size for very small screens */
  }
}
/* Styling for the 'Shop Now' Button within the Hero Section */
#hero button {
    background-image: url("../img/button.png");
    background-color: transparent;
    color: 	#353839;
    border: 0; /* Removes the button border */
    padding: 10px 20px; /* Padding inside the button */
    background-repeat: no-repeat; /* Prevents the background image from repeating */
    cursor: pointer;
    font-weight: 700;
    font-size: 30px;
}
/* Layout and Styling for the Features Section */
#feature{
  display: flex; /* Enables flexbox for the layout */
  align-content: center;
  justify-content: space-between; /* Distributes items evenly with space between them */
  flex-wrap: wrap;
  padding: 270px; /* Adds padding around the section */


}
/* Individual Feature Box Styling */
.fe-box {
    width: 180px;/* Sets the width of each feature box */
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.1);
    border: 1px solid #cce7d9;
    border-radius: 4px;
    margin: 15px 0; /* Adds vertical margin for spacing */
}
/* Hover Effect for Feature Boxes */
.fe-box:hover {
    box-shadow: 10px 10px 54px rgb(92, 91, 91);
}

.fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #f6f9f8;
    background-color: #df723b;
}

#feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* This ensures vertical centering */
  justify-content: center; /* This ensures horizontal centering */
  padding: 20px; /* Adjusted padding */
}

.fe-box {
  margin: 10px; /* This gives space around each box */
  flex: 0 1 auto; /* Allows the box to shrink but not grow */
}

/* Responsive Design Adjustments for the Features Section */
@media (max-width: 768px) {
  #feature {
    flex-direction: column; /* Stack the items vertically */
  }

  .fe-box {
    width: 80%; /* Set a desired width for each box */
    margin-bottom: 20px; /* Space out the boxes */
  }
}

/* Styling for Images within Feature Boxes */

#feature .fe-box image {
  width: 100px; /* Sets a fixed width for images to ensure uniformity */
  margin-bottom: 10px;
}
/* Basic Styling for Headings within Feature Boxes */
#feature .fe-box h6{
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}
/* Background Colors for Feature Box Headings to Distinguish Them */
/* Applies specific background colors to headings in each feature box for visual differentiation */
#feature .fe-box:nth-child(2) h6 {
  background-color: #cdebbc;
}
#feature .fe-box:nth-child(3) h6 {
  background-color: #d1e8f2;
}
#feature .fe-box:nth-child(4) h6 {
  background-color: #cdd4f8;
}
#feature .fe-box:nth-child(5) h6 {
  background-color: #f6dbf6;
}
#feature .fe-box:nth-child(6) h6 {
  background-color: #fff2e5;
}
/* Central Alignment for Product Listings */
#product1{
  text-align: center;
}
/* Flex Container for Products */
#product1 .pro-container{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap:wrap-reverse;

}
/* Individual Product Styling */
.pro{
  width: 23%; /* Sets width as a percentage of the parent container */
  min-width: 250px;
  background-color: #FFF; /* Background color for the product */
  border: 1px solid #EEE;
  border-radius: 15px;
  cursor: pointer; /* Changes the cursor to indicate the item is clickable */
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
  margin: 15px 0;
  transition: 0.2ease;
  position: relative;  /* Establishes a stacking context for positioned children */
}

.pro img{
  
  width: 100%;
  border-radius: 10px;
}
/* Hover Effect for Products */

.pro:hover{
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.6);

}
/* Description Styling */

.des span{
  
  color: #606063;
  font-size: 12px;
  
}
.des h5{
padding-top:7px;
color: #1a1a1a;

}

.star{
  
  font-size: 12px;
    color: gold; 
  
}
.des h4{
 
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color:#088178;
}
/* Styling for the Add to Cart Icon */
.cart {
  width: 40px; /* Fixed width and height for a circular shape */
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  border: 1px solid #e8f6ea;
  position: absolute; /* Positions relative to the product container */
  bottom: 20px; /* Positioned at the bottom inside the product box */
  right: 10px; /* Offset from the right edge */

}
/* Newsletter Section Styling */
#newsletter{
  display: flex; /* Uses flexbox for layout */
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image:url(img/banner/b14.png); /* Background image for visual interest */
  background-repeat: no-repeat; /* Prevents the background image from repeating */
  background-position: 20% 30%;
  background-color: #041e42;
 
 
}
/* Styling for Newsletter Text and Call to Action */
#newsletter h4{
font-size: 22px;
font-weight: 700;
color:#fff;
}
#newsletter p{
  font-size: 14px;
  font-weight: 600;
  color:#818ea0;
  }
  #newsletter p span{
    color:#ffbd27;
  }
  #newsletter .form{
    display: flex;
    width: 40%;
  }
  #newsletter input{
    height: 3.125rem;/* Sets a fixed height for inputs */
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline:none;
    border-top-right-radius: 0;
    border-top-left-radius:0 ;
  }
  #newsletter button{
    background-color: #088176;
    color: #fff;
    white-space: nowrap;/* Prevents text wrapping */
    border-top-left-radius: 0;
    border-top-left-radius:0 ;

  }
/* Footer Layout and Padding */
  footer{
    display: flex;/* Enables flexbox layout for direct children, allowing for a responsive design */

    flex-wrap: wrap; /* Allows child elements to wrap onto new lines as necessary for responsive design */
    justify-content: space-between;/* Spaces out child elements evenly and uses available space on the main-axis */
    padding-left: 50px;/* Adds padding on the left for some spacing from the content edge */

  }
/* Column Layout for Footer Sections */
  footer .col{
    display: flex; /* Uses flexbox to layout each footer section */
    flex-direction: column; /* Stacks child elements (links, headings, paragraphs) vertically */
    align-items: flex-start; /* Aligns children to the start of the flex container, ensuring left alignment */
    margin-bottom: 20px; /* Adds bottom margin for spacing between each footer section */
  }
  /* Styling for Headings in the Footer */
  footer h4{
    font-size: 14px;
    padding-bottom: 20px;

  }
/* Paragraph Styling in the Footer */
  footer p{
    font-size: 13px;
    padding-bottom: 20px;
    margin: 0 0 8px 0;/* Adjusts the margin to provide proper spacing, with a focus on the bottom margin */
    
  }
/* Link Styling within the Footer */
  footer a{
    font-size: 13px;
    padding-bottom: 20px;
    text-decoration: none;/* Removes the default underline from links for a cleaner look */
    color: #222;
    margin-bottom: 10px;/* Adds margin below links for spacing between subsequent links or text */
    
    
  }
/* Social Media Follow Icons Styling */
  footer.follow i{
    color:#465b52;
    padding-right: 4px; /* Adds right padding to space out icons when they are inline */
    cursor: pointer; /* Changes the cursor to a pointer to indicate the icons are interactive */
  }
/* Image Styling for Install or Download Section */
  footer.install img{
    border: 10px solid #088176;
    border-radius: 6px;/* Rounds the corners of the images for a softer, more modern appearance */

  }

/*Shop Page*/

/* Styles the header of the shop page, setting a background image, ensuring it covers the entire header area, and centers the content both vertically and horizontally */
#page-header{
  background-image: url(img/banner/b1.jpg); /* Background image for visual appeal */
  width: 100%;
  height: 20vh;
  background-size: cover; /* Ensures the background image fully covers the header area */
  display: flex; /* Enables flexbox for layout */
  justify-content: center; /* Centers content horizontally */
  text-align: center;
  flex-direction: column;
  padding: 14px; /* Adds padding for spacing around the content */
}
	/* Sets the text color for headings and paragraphs in the header for readability */
#page-header h2,
#page-header p {
color: black;

}
	/* Centers pagination links */
#pagination {
  text-align: center;
}
/* Styles pagination links to be more visually appealing and clickable */
#pagination a{
  text-decoration: none;
  background-color: #088178;
  padding: 15px 20px; /* Adds space around the text for better clickability */
  border-radius: 4px;
  color: #fff;
  font-weight: 600; /* Semi-bold for emphasis */
}
/* Styles icons within pagination links for consistency and emphasis */
#pagination a i{
  font-size: 16px;
  font-weight: 600;
}

/*product detail Page*/
/* Adjusts the width and margin of the main product image for layout purposes */
#prodetails.single-pro-image{
  width: 40%; /* Takes up 40% of its container's width */
  margin-right: 50px; /* Right margin for spacing */
}
/* Aligns small product images in a row with space between them */
.small-img-group{
  display: flex;
  justify-content: space-between;
 

}
/* Sets a basis for the size of small image columns and makes them clickable */
.smal-img-col{
  flex-basis: 20%;
  cursor: pointer; /* Indicates that these are clickable */
}

/* Styles a popup notification bar, initially hidden */
.popup-bar {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Corrects the centering based on the element's dimensions */
  background-color: #f8f9fa;
  color: #333;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s; /* Animates the opacity for a fade-in effect */
  z-index: 1002;
  text-align: center;
  max-width: 80%;
}
/* Controls the visibility of the popup bar when it needs to be shown */
.popup-bar.show {
  opacity: 1; /* Makes the popup fully visible */
}

/* Basic setup for a modal, used for overlays or informative popups, hidden by default */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 90%; /* Could be more or less, depending on screen size */
}



/* Establishes a responsive grid for blog content, allowing articles to fill the space neatly and adapt to the screen size */
.blog-content {
    margin: 2rem auto; /* Centers the content with a consistent margin */
    max-width: 1200px; /* Limits the maximum width for readability */
    display: grid; /* Utilizes CSS Grid for layout */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Creates a flexible number of columns */
    gap: 20px; /* Spacing between grid items */
}
/* Styles individual blog post containers for visual appeal and distinction */
.blog-post {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden; /* Ensures content does not spill outside the container */
    transition: transform 0.3s ease;/* Smooth transition for hover effect */
}
/* Hover effect that slightly lifts the blog post for an interactive feel */
.blog-post:hover {
    transform: translateY(-5px);
}
/* Heading and paragraph styling within posts, focusing on hierarchy and readability */
.blog-post h3 {
    font-size: 1.5rem;
    margin: 15px; /* Margin for spacing around the heading */
}

.blog-post p {
    padding: 0 15px 15px; /* Padding for text block consistency */
    font-size: 1rem; /* Standard font size for body text */
    color: #606060;
}
/* Styles the 'Read More' button to stand out and encourage interaction */
.read-more {
    display: inline-block; /* Allows block level properties while flowing with text */	
    background: #088178;
    color: #fff;
    padding: 10px 15px; /* Padding for a larger clickable area */
    margin: 15px;
    border-radius: 5px;
    text-decoration: none; /* Removes underline from link */
    font-weight: bold;
}
/* Hover effect for the 'Read More' button for feedback on interaction */
.read-more:hover {
    background: #065a60; /* Darker shade on hover for a subtle effect */
}
/* Styles for magazine link lists and embedded YouTube videos, ensuring consistency and readability */
.magazine-links, .youtube-video {
    background: #f9f9f9;
    padding: 20px; /* Padding for internal spacing */
    border-radius: 10px; /* Rounded corners for visual consistency with blog posts */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
/* Ensures magazine links and video frames are properly spaced and accessible */
.magazine-links ul, .youtube-video iframe {
    margin-top: 15px;/* Top margin for separation from content above */
}

.magazine-links li a {
    color: #088178;
    text-decoration: none;
    font-weight: 600;
}

.magazine-links li a:hover {
    text-decoration: underline;
}

.youtube-video iframe {
    width: 100%;
    height: 315px;
}
.magazine-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article-link {
  text-decoration: none;
  color: black; /* Adjust color to match your design */
}

.article {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px; /* Spacing between articles */
}

.article img {
  width: 100%; /* Adjust as necessary */
  height: auto;
  border-radius: 8px; /* Rounded corners */
}

.article-info {
  text-align: center;
}

.article-title {
  font-size: 1.5em; /* Adjust to match the size in the design */
  font-weight: bold;
  margin-top: 10px; /* Spacing between image and title */
}

.article-author {
  font-size: 1em;
  color: grey; /* Adjust as necessary */
}
/* Adjustments to layout and font sizes based on screen width, enhancing readability and usability on mobile devices */

@media (max-width: 768px) {
    .blog-content {
        grid-template-columns: 1fr;
    }

    .blog-post img {
        height: auto;
    }

    .blog-post, .magazine-links, .youtube-video {
        padding: 15px;
    }

    .blog-post h3, .magazine-links h3, .youtube-video h3 {
        font-size: 1.25rem;
    }

    .read-more {
        font-size: 0.875rem;
        padding: 8px 12px;
    }
}

/* Further responsive adjustments for smaller devices */
@media (max-width: 480px) {
    .blog-content {
        padding: 10px;
    }

    .magazine-links li a, .read-more {
        font-size: 0.8rem;
    }
}
/* About Page */

/* Creates a welcoming introduction area with centered text and a light background for contrast */
#welcome {
  padding: 30px 15px; /* Provides internal spacing */
  text-align: center;
  background-color: #f9f9f9; 
}
/* Styles the main heading of the welcome section for emphasis */
#welcome h2 {
  font-size: 2em;
  color: #333; /* Dark text for heading */
}

/* Ensures the introductory text is readable and centered */

#welcome p {
  font-size: 1.1em;/* Slightly larger text for readability */
  max-width: 700px;
  margin: 20px auto;
}



/* Our Values */
/* Presents core values with centered text, mirroring the style of the welcome section for consistency */
#our-values {
  padding: 30px 15px;
  text-align: center;
  background-color: #f9f9f9; /* Light background for the section */
}
/* Heading styling for the values section to draw attention */

#our-values h2 {
  font-size: 2em;
  color: #333; /* Ensures readability */
}
/* Paragraph styling for detailed explanation of values */
#our-values p {
  font-size: 1.1em; /* Enhanced size for clarity */
  max-width: 700px;/* Restrains paragraph width for readability */
  margin: 20px auto;
}

/* Team Section */
/* Highlights the team section, encouraging user engagement */
#team-section {
  padding: 30px 15px; /* Uniform padding for spacing */
  text-align: center; /* Central alignment for focus */
}
/* Heading styling to introduce the team effectively */
#team-section h2 {
  font-size: 2em;  /* Prominent size for section title */
  margin-bottom: 20px;
}
/* Styling for team descriptions, facilitating concise and centralized information */

#team-section .team-summary p {
  font-size: 1.1em;
  max-width: 700px;
  margin: auto; /* Automatically centers the text block */
}

/* Configures a visually striking CTA section with a dynamic background color change on hover */

.learn-more {
  display: inline-block; /* Allows block level properties */
  padding: 10px 20px; /* Ample padding for clickability */
    margin-top: 20px;
  border: 2px solid #0275d8; 
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
}

/* Hover effect to highlight the 'learn more' button, inviting interaction */	

.learn-more:hover {
  background-color: #0275d8; /* Brand color for hover state */
  color: #fff; /* White text when button is hovered */
}

/* Styles the main CTA for the About page, drawing attention with color contrast */
#about-cta {
  background-color: currentColor; /* Uses the current text color for background */
  color: #fff; /* Ensures text stands out against the background */
  padding: 40px 15px; /* Provides internal spacing */
  text-align: center; /* Centers the content for emphasis */
}

/* Primary message in the CTA section */
#about-cta h2 {
  font-size: 2em; /* Large text for impact */
  margin-bottom: 20px; /* Spacing below for separation */
}
/* Subtext to support the main CTA message */
#about-cta p {
  font-size: 1.1em;
  margin-bottom: 20px; /* Adds space before the action button */
}
/* Styles the subscription or action button within the CTA section */
.btn-subscribe {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0056b3; /* Darker shade for the button */
  color: #fff;
  border-radius: 5px; /* Rounded edges for a modern appearance */
  transition: background-color 0.3s; /* Smooth color transition on hover */
}
/* Enhances the button with a darker shade on hover to indicate interactivity */
.btn-subscribe:hover {
  background-color: #004080; /* Even darker shade on hover */
}

/* Footer Styles (if needed) */


/* Responsive Design */
@media (max-width: 768px) {
  #about-hero .hero-text h1 {
    font-size: 2em;
  }

  #our-values p, #team-section .team-summary p, #about-cta p {
    font-size: 1em;
  }
}


/* Contact Section */
#contact {
  display: flex;/* Enables a flexible layout that can adjust based on content size */
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
  justify-content: space-between;
  padding: 20px;
  background-color: #f8f8f8;
}
/* Sets a responsive width for both the contact information and the form, allowing them to sit side by side on wider screens */
.contact-info, .contact-form {
  width: 48%;/* Almost half width, leaving a bit of space between them */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .contact-info, .contact-form {
    width: 100%; /* Stacks the elements on smaller screens */
    margin-bottom: 20px;
  }
}
/* Styles paragraphs within the contact details for consistency and alignment */
.contact-details p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
/* Adds spacing to icons within the contact details for visual separation */
.contact-details i {
  margin-right: 10px;
}
/* Uniform styling for input fields and textareas, ensuring full width and padding for ease of use */
.contact-form input, .contact-form textarea {
  width: 100%; /* Ensures these elements take up the full container width */
  padding: 10px; 
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px; /* Rounded corners for a modern appearance */
}
/* Styles the submission button within the contact form for visibility and interactivity */
.contact-form button.btn-submit {
  padding: 10px 20px;
  background-color: #0275d8;
  color: white;
  border: none;
  border-radius: 5px; /* Completed the border-radius property */
  cursor: pointer; /* Added cursor for better user experience */
  display: block; /* Makes the button block level for better alignment */
  width: auto; /* Adjusts button width according to its content */
  margin: 0 auto; /* Centers the button */
}

/* Further adjusts padding and margin in the contact section for very small screens */
@media (max-width: 480px) {
  #contact {
    padding: 20px 10px; /* Reduces padding on very small screens */
  }
  .contact-details p, .contact-form button.btn-submit {
    margin: 15px 0; /* Increases spacing for touch targets */
  }
}
/* Initially hides the hamburger menu on larger screens, shows it on smaller screens */
.hamburger-menu {
  display: none; /* Hidden on desktop, shown via media query for mobile */
  flex-direction: column;
  justify-content: space-around;
  height: 25px; /* Total height of the icon */
  width: 35px; /* Width of the icon */
  cursor: pointer;
}

.hamburger-menu div {
  height: 3px; /* Height of each line */
  width: 100%; /* Make lines full width of the .hamburger-menu container */
  background-color: #333; /* Color of the hamburger lines */
  transition: all 0.3s ease;
}

/* Media query to show the hamburger menu on smaller screens */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex; /* This will show the hamburger menu on mobile */
  }
}
