* {
    box-sizing: border-box;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size:large;
    margin: 0;
}

body {
    line-height: 1.6;
            background-color: #f9f9f9;
            color: #333;
}

header {
    background:#00263b;
    padding: 20px;
    border-radius: 6px;
    color: white;
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav {
    flex: 1;
    text-align: right;
}

nav ul {
    list-style: none;
    display: inline-flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
}

.menu-icon:hover {
    color: #ffcc00;
}

.mobile-nav {
    display: none;
    background: #0074D9;
    position: absolute;
    top: 145px;
    right: 00px;
    width: 200px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav ul {
    list-style: none;
    padding: 10px;
}

.mobile-nav ul li {
    margin: 10px 0;
    text-align: center;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
}

.mobile-nav ul li a:hover {
    background: #ffcc00;
    color: #0074D9;
}
.hero {
    background-image: url('image/connections.jpeg');
    background-size: cover;
    background-position: center;
    color: yellow;
    text-align: center;
    padding: 150px 20px; /* Reduced padding to make it more mobile-friendly */
}

.hero h1 {
    font-size: 36px; /* Made font size more responsive */
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px; /* Adjusted font size for better readability */
    margin-bottom: 30px;
}

.hero .cta-button {
    background: #044C80;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    padding: 12px 24px; /* Added padding for a balanced button size */
    text-decoration: none;
    max-width: 250px; /* Restricts the button’s width for larger screens */
    width: 100%; /* Allows the button to be responsive on smaller screens */
    display: inline-block; /* Prevents the button from stretching across the container */
    transition: background 0.3s ease;
}

.hero .cta-button:hover {
    background: #ff9900;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px; /* Adjusts font size for smaller screens */
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero {
        padding: 100px 20px; /* Reduces padding for better spacing on mobile */
    }
    
    .hero .cta-button {
        font-size: 16px; /* Reduces font size for mobile buttons */
        padding: 10px 20px;
    }
}

.features-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 30px; /* Space between cards */
    padding: 20px;
    justify-items: center; /* Center the items horizontally */
}

.feature-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 350px; /* Max width to prevent cards stretching too wide */
    transition: transform 0.3s ease;
}

.feature-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Hover effect for feature cards */
.feature-card:hover {
    transform: translateY(-10px); /* Lift the card on hover */
}

/* Responsive design: Adjust layout for smaller screens */
@media screen and (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr; /* 1 column layout for mobile screens */
    }
}


.about-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.about-text {
    flex: 1 1 500px;
    font-size: 18px;
    line-height: 1.8;
}

.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Call to Action Section */
.cta1-section {
    background-color: #f4f4f4; /* Light grey background */
    padding: 20px;
    text-align: center;
}

.cta1-section h2 {
    margin: 0;
    font-size: 1.5em; /* Adjust font size as needed */
    color: #333;
}

.cta1-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF; /* Primary button color */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta1-button:hover {
    background-color: #0056b3; /* Darker blue for hover effect */
}

/* Footer */
footer {
    background-color: #044C80; /* Dark background */
    color: #fff;
    text-align: center;
    padding: 10px;
    position: flex;
    bottom: 0;
    border-radius:6px;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cta1-section h2 {
        font-size: 1.2em;
    }

    .cta1-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .cta1-section {
        padding: 15px;
    }

    .cta1-section h2 {
        font-size: 1em;
    }

    .cta1-button {
        padding: 6px 12px;
        font-size: 0.8em;
    }

    footer p {
        font-size: 0.8em;
    }
}
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .features-container {
        flex-direction: column;
    }

    nav ul {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .mobile-nav {
        display: block;
    }
}

.logo-container {
    position: absolute;
    top: 13.5px; /* Adjust top margin as needed */
    left: 5px; /* Adjust left margin as needed */
    width: 40px; /* Adjust width as needed */
    border-radius: 50%;
    overflow: hidden;
}
.logo-container img {
    display: block;
    width: 100%;
    height: 100%;
}




#scroll-to-top {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    background-color: yellow;
    color: black;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  #scroll-to-top.show {
    opacity: 1;
    visibility: visible;
  }

  .cookie-consent {
    position: fixed;
    bottom: 20%;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: #044C80;
    color:white;
    text-align: center;
    font-size: 22x;
  }

  .cookie-consent button {
    background-color: red;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 5px;
  }

  .special-g {
    color: orangered;
  }
  
  .special-n {
    color: orangered;
  }

  #datetime {
    font-size: 14px;
    margin: 0;
  }

.subtitle {
    font-size: 18px;
    margin: 5px 0;
  }
   
/* Default: Hide the close icon on larger screens */
.close-menu-mobile {
    display: none;
  }
  
  /* Show the close icon only on mobile devices (screens narrower than 768px) */
  @media (max-width: 768px) {
    .close-menu-mobile {
        display: block;
        text-align: center;
        padding: 2px;
        border-radius: 8px;
        background-color: red;
        border-top: 2px solid gold;
    }
  }
  

 /* CSS styles for the sliding headline */
 .sliding-headline {
    overflow: hidden;
    background-color: black;
    color: white;
    padding: 5px;
    margin-top: 0;
    margin-bottom: 10px;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
  }

  .sliding-headline h2 {
    font-size: 18px;
    margin: 2px;
    font-family: 'Times New Roman', Times, serif; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            margin: 0;
            font-size: larger;
    white-space: nowrap;
    animation: slide 15s linear infinite;
  }

  .sliding-headline h3 span {
    display: inline-block;
    padding: 0 16px;
  }

  @keyframes slide {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  
  /* CSS for the video box and button */
  .video-container {
    text-align: center;
  }

  .video-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
  }
  
  .video-box {
    width: 100%;
    max-width: 50%; /* Set the maximum width for the video box */
    height: 50%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (height / width) for responsive video */
    margin: auto;
    border-radius: 16px;
    position: relative;
  }
  
  .video-box iframe {
    position: absolute;
    width: 100%;
    height: 90%;
    top: 0;
    left: 0;
  }
  
  .button-container {
    text-align: center;
    margin-top: 0;
  }
  
  .button {
    display: inline-block;
    padding: 10px 20px;
        color: white;
    text-decoration: none;
     background-color: green;
    animation: flashing 2s infinite;
  }

  @keyframes flashing {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }

  /* Media query for small screens */
  @media (max-width: 768px) {
    .video-box {
      max-width: 100%;
    }
  }

  /* Media query for big screens */
  @media (min-width: 1200px) {
    .video-box {
      padding-bottom: 40%; /* Adjust the height to your preference */
    }
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  /* CSS styles for the buttons */
  .button-container {
    text-align: center;
  }

  .button-container a {
    display: inline-block;
    font-size: large;
    padding: 10px 20px;
    background-color: orangered;
    border-radius: 50px;
    color: white;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-decoration: none;
  }


 /* Main Content */
        .box {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .box h2 {
            font-size: 2em;
            margin-bottom: 10px;
        }
        
        .box p {
            margin-bottom: 10px;
        }
        
        .box ul {
            list-style: disc;
            margin-left: 20px;
        }
        
        .box a.cta-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #0074D9;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1em;
        }
        
        .box a.cta-button:hover {
            background-color: #005bb5;
        }
        
        .close {
            cursor: pointer;
            color: #0074D9;
            text-align: right;
            font-weight: bold;
        }
        
        
        
        /* Company Values */
        .value-box-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .value-box {
            background: #f4f4f4;
            border-radius: 8px;
            padding: 20px;
            margin: 10px;
            flex: 1 1 30%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        .value-box img {
            width: 80px;
            height: auto;
            margin-bottom: 10px;
        }
        
        .value-box h3 {
            margin-bottom: 10px;
        }
        
        .value-box ul {
            list-style: none;
            padding: 0;
        }
        
        .value-box ul li {
            margin-bottom: 10px;
        }
        
        
        .value-box ul {
    list-style-type: none; /* Removes default bullet points */
    padding-left: 0; /* Aligns list with the content */
}

.value-box ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.value-box ul li i {
    margin-right: 8px; /* Spacing between the icon and text */
    color: gold; /* Gold color for icons */
}

        /* Footer */
        footer {
            background: #00263b;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
        
        footer p {
            margin: 0;
        }
        
        .social-links {
            list-style: none;
            padding: 0;
        }
        
        .social-links li {
            display: inline;
            margin: 0 10px;
        }
        
        .social-links a {
            color: #fff;
            text-decoration: none;
        }
        
        .social-links a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar .nav-links {
                flex-direction: column;
                align-items: center;
            }
        
            .navbar .nav-links li {
                margin: 10px 0;
            }
        
            .value-box-container {
                flex-direction: column;
            }
        
            .value-box {
                flex: 1 1 100%;
            }
        }
         .box .icon {
            font-size: 2em;
            margin-right: 20px;
            color: #0074D9;
        }
         .value-box i {
            font-size: 3em;
            margin-bottom: 10px;
            color: #0074D9;
        }
        
        .value-box h3 {
            margin-bottom: 10px;
        }
        
        .value-box ul {
            list-style: none;
            padding: 0;
        }
        
        .value-box ul li {
            margin-bottom: 10px;
        }
       
/* Grid Sections */
.grid-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
    text-align: center; /* Center text and content */
}

.section {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
}

.section .icon {
    font-size: 2em;
    margin-bottom: 20px; /* Add spacing below icon */
    color: #0074D9;
}

.section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.section p {
    margin-bottom: 10px;
}

.section ul {
    list-style: disc;
    margin-left: 20px;
}

.section a.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0074D9;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

.section a.cta-button:hover {
    background-color: #005bb5;
}

/* Footer */
footer {
    background: #044C80;
    color: #fff;
    padding: 20px 0;
    text-align: center; /* Center text and links */
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .menu-toggle {
        display: block;
        font-size: 1.5em;
        cursor: pointer;
        color: #fff;
    }

    .grid-sections {
        grid-template-columns: 1fr;
    }

    .section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section .icon {
        margin-bottom: 10px;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .section p {
        font-size: 0.9em;
    }
}
        /* CTA Section Styling */
.cta1-section {
    background-color: #f9f9f9; /* Light background color */
    padding: 40px 20px; /* Padding for spacing */
    text-align: center; /* Center align text and button */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin: 20px; /* Margin for spacing from other elements */
}

.cta1-section h2 {
    font-size: 2em; /* Large font size for heading */
    color: #333; /* Dark text color for readability */
    margin-bottom: 20px; /* Space below the heading */
}

.cta1-button {
    display: inline-block; /* Makes the button inline but block-level for padding and margin */
    padding: 12px 24px; /* Button padding */
    font-size: 1.2em; /* Font size for button text */
    color: #fff; /* White text color */
    background-color: #007bff; /* Primary button color */
    text-decoration: none; /* Remove underline from link */
    border-radius: 4px; /* Rounded corners for the button */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.cta1-button:hover {
    background-color: #0056b3; /* Darker background on hover */
}
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto; /* Center horizontally */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center;
}
.goforus-message {
    font-size: 24px;
    font-weight: bold;
    color: #b7fa00;
}

.scripture-reference {
    font-size: 16px;
    color: #888;
}


    .offerings ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .offerings li {
      padding: 0.5em 0;
    }

    @media (min-width: 768px) {
      .offerings {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
      }

      .offerings ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }

      .offerings li {
        padding-left: 1em;
      }
    }

    @media (max-width: 767px) {
      .offerings ul {
        padding-left: 1em;
      }
    }
 