﻿    .container {
      margin: 0 auto;    /* Centers the content */
    padding: 0 15px;   /* Adds spacing on smaller screens */
    
          
           /* border: 2px solid #990000;  Slight border */
    border-radius: 12px; /* Curved edges */
    padding: 20px; /* Adds internal spacing */
    margin: 10px auto; /* Adds spacing outside */
   /*  max-width: 1200px; Centers content with a set width */
    background-color: #f8f9fa; /* Background color for the header */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for 3D effect */

}
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        
         /* Top Bar Styles */
        .top-bar {
            background: #FFFFFF;
             border: 2px solid #FFFFFF;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            border-bottom: 1px solid #ddd;
        }

        .top-bar img {
            height: 50px;
        }

        .top-bar-links {
            display: flex;
            gap: 15px;
        }

        .top-bar-links a {
            color: #007bff;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .top-bar-links a:hover {
            color: #0056b3;
        }
        
        
.top-bar-img {
    max-width: 100%; /* Ensures the image resizes properly */
    height: auto; /* Maintains aspect ratio */
}



        /* Header Styles */
        header {
            background: linear-gradient(to right, #F8F8EB, #F8F8EB);
            color: white;
            padding: 20px 10px;
            
            border: 2px solid #990000; /* Slight border */
    border-radius: 12px; /* Curved edges */
    padding: 20px; /* Adds internal spacing */
    margin: 10px auto; /* Adds spacing outside */
    max-width: 1200px; /* Centers content with a set width */
    background-color: #fff; /* Background color for the header */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for 3D effect */
        }
 .header-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
           /* max-width: 1200px;*/
            margin: 0 auto;
        }

        .header-left {
            flex: 1;
            text-align: center;
        }

        .header-left h1 {
            margin: 0;
            font-size: 1.8rem;
        }
        
                .header-left h2 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #a40000;
        }


        .header-left p {
            margin: 5px 0 0;
            font-size: 0.9rem;
        }

        .header-middle {
            flex: 2;
            text-align: center;
            margin: 10px 0;
        }

        .header-middle img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        .header-right {
            flex: 2;
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .header-right .card {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            width: 280px;
        }

        .header-right h2 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #a40000;
        }

        .header-right input,
        .header-right select {
            width: calc(100% - 10px);
            padding: 8px;
            margin: 5px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
              .header-left input,
        .header-left select {
            width: calc(100% - 10px);
            padding: 8px;
            margin: 5px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 0.9rem;
        }


        .header-right button {
            background: #a40000;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .header-right button:hover {
            background: #850000;
        }

        .header-right a {
            color: #007bff;
            text-decoration: none;
            font-size: 0.8rem;
            display: inline-block;
            margin-top: 5px;
        }

        .header-right a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: center;
            }

            .header-middle {
                order: 1;
                margin-bottom: 15px;
            }

            .header-left {
                order: 2;
                margin-bottom: 15px;
            }

            .header-right {
                order: 3;
            }
            
                     .header-left .card {
                width: 90%;
                margin-bottom: 10px;
            }

            .header-right .card {
                width: 90%;
                margin-bottom: 10px;
            }
            
      

        }
        /* Navigation Styles */
        nav {
            background: #990000;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 5px;
            
                  
            border: 2px solid #990000; /* Slight border */
    border-radius: 12px; /* Curved edges */
     max-width: 1200px; /* Centers content with a set width */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for 3D effect */

        }

        nav .menu {
            display: flex;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            padding: 5px 10px;
        }

        nav a:hover {
            background: #555;
            border-radius: 5px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background: white;
        }
        
        
        /* Hide hamburger menu on homepage */
.home-page .hamburger {
    display: none;
}


/* Show hamburger menu on other pages */
.internal-page .hamburger {
    display: block;
}

        /* Hidden menu for mobile */
        .menu {
            transition: transform 0.3s ease;
        }

        .menu.hidden {
            display: none;
        }
/* Section container */
.profiles-section {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

/* Section title styling */
.section-title {
    background-color: #990000; /* Background color for the title */
    color: white; /* White font color */
    padding: 0px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 10px 0; /* Adds spacing between the title and the cards */
    border-radius: 5px; /* Optional: Rounded corners for a modern look */
}

/* Card container styling */
.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px; /* Space between the cards */
    padding: 20px;
    background-color: #f9f9f9; /* Subtle gray background */
}

/* Individual card styling */
.card {
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-left: 2px solid #ddd;
    border-radius: 5px;
}


.card a {
    display: block; /* Makes links appear on separate lines */
    margin-top: 10px; /* Adds spacing between links */
    text-align: center; /* Centers the links */
}

/* Card header */
.card h3 {
    font-size: 16px;
    margin: 5px 0;
    color: #333;
}

/* Card paragraph (location) */
.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* Images inside cards */
.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 3px;
}


 /* Footer Styles */
        footer {
            background: #white;
           color: #990000;
                       text-align: center;
            padding: 20px;
        }

        footer a {
            color: #990000;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }
        
        .mobile-links {
    display: none; /* Hide mobile links on desktop by default */
}
        /* Tagline Section */
.header-tagline {
    text-align: center;
    /*background-color: #990000;  Dark red background */
    color: black; /* White text */
    padding: 5px; /* Spacing around text */
    font-size: 16px; /* Default font size */
    line-height: 1.5; /* Add spacing between lines */
}

/* Strong tag in tagline for emphasis */
.header-tagline strong {
    font-size: 18px; /* Slightly larger font for the strong text */
}
        
        
        
        .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.login-section, .search-section {
    width: 20%;
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.login-section h2, .search-section h2 {
    font-size: 18px;
    color: #d32f2f;
}

.login-section form, .search-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-section input, .search-section select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-section button, .search-section button {
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 5px;
}

.text-image-section {
    width: 50%;
    text-align: center;
    padding: 20px;
}

.text-image-section h1 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.text-image-section p {
    font-size: 16px;
    color: #666;
}

.text-image-section img {
    width: 200px;  /* Increased from 120px */
    height: 200px; /* Increased from 120px */
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border: 4px solid #d32f2f;
}

.mobile-header-container{
	
	display:none;
}
  
        /* Responsive Design */
        @media (max-width: 768px) {
        
          nav {
        padding: 0;
        border: none;
        height: 0; /* Removes the empty bar effect */
        overflow: hidden;
    }

            nav .menu {
                display: none;
                flex-direction: column;
                gap: 10px;
                position: absolute;
                top: 60px;
                right: 20px;
                background: #333;
                padding: 10px;
                border-radius: 5px;
            }

            nav .menu.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }
            
             .top-bar-links {
        display: none; /* Hides links on mobile */
    }

    .top-bar-img {
      width: 100%;  /* Ensures the image fills the container width */
    height: auto; /* Maintains aspect ratio */
    max-height: 150px; /* Adjust the height as needed */
    object-fit: contain; /* Ensures the image scales properly without stretching */    }
    
     /* Reduce gap between cards */
    .content {
        gap: 10px; /* Less spacing on mobile */
        padding: 10px;
    }

    /* Increase image height on mobile */
    .card img {
        height: 250px; /* Increase height */
    }
    
    
    
     .header-left,
    .header-right {
        display: none; /* Hide header-left and header-right on mobile */
    }
    
     .header-container {
        flex-direction: column;
        align-items: center;
    }

    /* Hide Login & Search Sections */
    .login-section,
    .search-section {
        display: none;
    }

    
    .mobile-links {
        display: flex; /* Show mobile links on mobile */
        justify-content: space-around;
        align-items: center;
        background-color: #f9f9f9; /* Light gray background */
        padding: 10px 0;
        border-top: 1px solid #ddd; /* Optional separator */
    }

    .mobile-links a {
        font-size: 14px;
        color: #333; /* Dark gray text */
        text-decoration: none;
        font-weight: bold;
    }

    .mobile-links a:hover {
        color: #990000; /* Highlight color on hover */
    }
    
    
     .header-tagline {
        font-size: 14px; /* Smaller font size on mobile */
        padding: 8px; /* Reduced padding for mobile */
    }

    .header-tagline strong {
        font-size: 16px; /* Adjust strong text size for mobile */
    }
    
      .header-container {
        display: none; /* Hide this version on mobile */
    }

    .mobile-header-container {
        display: block; /* Show your previous design */
    }
    
        }
        
        
   @media (max-width: 480px) {
    .content {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
}

.membership-section {
    background-color: #fff8f0;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.membership-option, .success-stories {
    margin-bottom: 20px;
}

.membership-option h3 a, .success-stories h2 {
    color: #990000;
    text-decoration: none;
    font-weight: bold;
}

.membership-option p, .success-stories p {
    font-size: 14px;
    color: #333;
}

.success-stories a {
    color: #990000;
    font-weight: bold;
}
