/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff; /* Alice Blue as background */
    color: #003060; /* Dark blue for text */
}

/* Navigation Bar */
.navbar {
    background-color: #003060 !important; /* Dark blue */

}

.navbar-brand {
    font-weight: bold;
    color: #f0f8ff !important; /* Alice Blue for text */
}

.navbar-nav .nav-link {
    color: #f0f8ff !important; /* Alice Blue for links */
}

.navbar-nav .nav-link:hover {
    color: #68bbe3 !important; /* Light blue for hover */
}
/* Custom White Hamburger Menu Icon */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1); /* Optional: Light border for the button */
}
.navbar {
    background-color: #003060; /* Dark blue */
}
/* Hover Effect for Navbar Toggler */
.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Light background on hover */
}

/* Navbar Theme Toggle Styles */
.check{
    margin-top: 9px;
}
.form-check-input:checked {
    background-color: #0e86da;
    border-color: #0e86da;
  }
  
  .form-check-label {
    color: #fff0f0;
    margin-left: 5px;
  }
  
  .dark-theme .form-check-label {
    color: #f0f8ff;
  }
/* Hero Section */
.display-4{
    font-weight: bold;
    color: #003060;

}
.hero-section {
    margin-top: 2%;
    color: #055c9d; /* Alice Blue for text */
    padding: 100px 0;
    /* background-color: #f0f8ff; */
}

.hero-section .row {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
}

.hero-section .col-6 {
    flex: 0 0 50%; /* Force each column to take 50% width */
    max-width: 50%; /* Ensure columns don't exceed 50% width */
}
.phone-image img {
    width: 100%; /* Ensure the image fills its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px; /* Optional: Add rounded corners */
}

/* .phone-image {
    background: url('../images/phone-portrait.png') no-repeat center center/cover; 
    height: 500px;
    width: 500px;
    border-radius: 20px;
} */

/* Featured Section Styles */
#featured {
    padding: 0;
    color: #0e86da; /* Alice Blue for text */
}

#featured h1 {
    color: #003060; /* Dark blue for text */
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

#featured .lead {
    text-align: justify;
    hyphens: auto;
    color:#003060 ;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Branding Services Section */
.service-card, .software-card {
    background-color: #68bbe3; /* Light blue */
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    color: #003060; /* Dark blue for text */
}

.service-card:hover, .software-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

#branding-services, #management-software {
    background-color: #055c9d; /* Medium blue */
    margin: 10px;
    /* border-radius: 2%; */
    padding: 10px;
    color: #f0f8ff; /* Alice Blue for text */
}

#management-software {
    background-color: #055c9d; /* Medium blue */
    margin: 10px;
    /* border-radius: 2%; */
    padding: 20px;
    color: #f0f8ff; /* Alice Blue for text */
}

#image-slideshow {
    width: 30%;
    margin-left: 25%;
    margin-right: 15%;
}

/* Image Grid Section */
.image-grid-section img {
    border-radius: 10px;
}
.service-card a, #management-software a{
    text-decoration: none;     /* Remove underline */
  color: #fff;               /* Change text color */
  background-color: #003060; 
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;

}

/* Contact Form Section */
.social-icons a {
    color: #003060; /* Dark blue */
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0e86da; /* Bright blue for hover */
}

.cap-head, .cap-text{
    background-color: #f0f8ff;
    color: #003060; /* Dark blue */
}

/* Popup Ad Styles */
#adPopup .modal-content {
    background: transparent;
    border: none;
  }
  
  #adPopup .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    opacity: 1;
    z-index: 1;
  }
  
  #adPopup .btn-close:hover {
    background: rgba(0,0,0,0.8);
  }
  
  #adPopup img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  #adPopup img:hover {
    transform: scale(1.02);
  }



/* Ad Banner Styles */
.ad-banner-section {
    overflow: hidden;
    position: relative;
  }
  
  .ad-banner-container {
    width: 100%;
    overflow: hidden;
  }
  
  .ad-banner-track {
    display: flex;
    width: 200%; /* Double width for 2 ads (duplicated) */
    animation: scrollBanner 20s linear infinite;
  }
  
  .ad-banner-item {
    flex: 0 0 50%; /* Each ad takes half (for 2 ads) */
    width: 50%;
    transition: transform 0.3s ease;
  }
  
  .ad-banner-item:hover {
    transform: scale(1.01);
  }
  
  .ad-banner-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  @keyframes scrollBanner {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%); /* Move by half (for 2 ads) */
    }
  }
  
  /* Pause animation on hover */
  .ad-banner-container:hover .ad-banner-track {
    animation-play-state: paused;
  }



/* Mobile View */
@media screen and (max-width: 768px) {
    /* Hero Section */

    .hero-section {
        padding-top: 100px;
        padding-bottom: 0;
    }
 
    .service-card, .software-card {
        margin: 10px 0;
    }

    #featured h1 {
        font-size: 2rem; /* Smaller heading on mobile */
    }

    #featured .lead {
        font-size: 1rem; /* Smaller text on mobile */
    }

    .hero-section .row {
        flex-direction: row; /* Ensure columns remain side by side */
    }

    .hero-section h1 {
        font-size: 1rem; /* Adjust heading size for smaller screens */
    }

    .hero-section .lead {
        font-size: 0.7rem; /* Adjust text size for smaller screens */
    }
    .phone-image img {
        height: auto; /* Ensure the image scales properly */
    }
    

}
#image-slideshow {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}


/* Loading Spinner */
.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top of everything */
}

.spinner {
    border: 8px solid #f0f8ff; /* Light blue border */
    border-top: 8px solid #0e86da; /* Bright blue border */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite; /* Spin animation */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}





/* Portfolio Section Styles */
#portfolio {
    padding-top: 100px; /* Adjust for fixed navbar */
    background-color: #f0f8ff; /* Alice Blue */
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 48, 96, 0.8); /* Dark blue with transparency */
    color: #f0f8ff; /* Alice Blue for text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #003060; /* Dark blue */
    color: #f0f8ff; /* Alice Blue for text */
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}







/* About Hero Section */
.about-hero-section {
    background: url('../images/about-hero1.jpeg') no-repeat center center/cover;
    padding: 150px 0;
    color: #f0f8ff;
    text-align: center;
}

.about-hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.about-hero-section .lead {
    font-size: 1.5rem;
}

/* Our Story Section */
#our-story {
    background-color: #f0f8ff; /* Alice Blue */
    padding: 60px 0;
}

#our-story p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Our Team Section */
#our-team {
    padding: 60px 0;
}

#our-team img {
    border: 4px solid #0e86da; /* Bright blue */
}

#our-team h3 {
    margin-top: 15px;
    font-size: 1.5rem;
}

#our-team p {
    color: #055c9d; /* Medium blue */
}

/* Our Values Section */
#our-values {
    background-color: #f0f8ff; /* Alice Blue */
    padding: 60px 0;
}

#our-values i {
    color: #0e86da; /* Bright blue */
}

#our-values h3 {
    font-size: 1.5rem;
    margin-top: 15px;
}

#our-values p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Call to Action Section */
#cta {
    padding: 60px 0;
}

#cta .btn {
    margin-top: 20px;
}
/* CEO Section */
#ceo {
    padding: 60px 0;
}

#ceo img {
    border: 4px solid #0e86da; /* Bright blue */
}

#ceo h3 {
    margin-top: 15px;
    font-size: 1.5rem;
}

#ceo blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

#ceo .blockquote-footer {
    font-size: 1rem;
    color: #055c9d; /* Medium blue */
}

/* Our Values Section */
#our-values i {
    color: #0e86da; /* Bright blue */
}

#our-values h3 {
    font-size: 1.5rem;
    margin-top: 15px;
}

#our-values p {
    font-size: 1.1rem;
    line-height: 1.8;
}
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff; /* Alice Blue */
    color: #003060; /* Dark blue */
}

/* Navigation Bar */
.navbar {
    background-color: #003060 !important; /* Dark blue */
    padding: 10px 0;
}

.navbar-brand {
    font-weight: bold;
    color: #f0f8ff !important; /* Alice Blue */
    margin-right: auto; /* Push brand to the left */
}

.navbar-nav {
    margin-left: auto; /* Push nav items to the right */
}

.nav-link {
    color: #f0f8ff !important; /* Alice Blue */
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #68bbe3 !important; /* Light blue on hover */
}

.nav-link.active {
    color: #0e86da !important; /* Bright blue for active link */
    font-weight: bold;
}

/* Hero Section */
.about-hero-section {
    background: url('../images/about-hero.jpeg') no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.about-hero-section h1 {
    font-size: 2.5rem; /* Smaller font size for mobile */
    font-weight: bold;
}

.about-hero-section .lead {
    font-size: 1.2rem; /* Smaller font size for mobile */
}


/* Responsive Font Sizes */
@media (max-width: 768px) {
    .about-hero-section h1 {
        font-size: 2rem; /* Adjust for smaller screens */
    }

    .about-hero-section .lead {
        font-size: 1rem; /* Adjust for smaller screens */
    }

    #our-mission h2, #ceo h3, #our-values h2, #cta h2 {
        font-size: 1.8rem; /* Adjust headings for smaller screens */
    }

    #our-mission p, #ceo blockquote, #our-values p, #cta .lead {
        font-size: 1rem; /* Adjust text for smaller screens */
    }
}

/* CEO Section */
#ceo {
    padding: 60px 0;
}

#ceo img {
    border: 4px solid #0e86da; /* Bright blue */
}

#ceo h3 {
    margin-top: 15px;
    font-size: 1.5rem;
}

#ceo blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

#ceo .blockquote-footer {
    font-size: 1rem;
    color: #055c9d; /* Medium blue */
}

/* Our Values Section */
#our-values i {
    color: #0e86da; /* Bright blue */
}

#our-values h3 {
    font-size: 1.5rem;
    margin-top: 15px;
}

#our-values p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Call to Action Section */
#cta {
    padding: 60px 0;
}

#cta .btn {
    margin-top: 20px;
}





/* Banner Styles */
.hero-banner {
    margin-top: 56px; /* Account for fixed navbar */
}

.feature-banner {
    border: 1px solid #e0e0e0;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.feature-banner img {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.demo-banner {
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-banner {
    border-radius: 8px;
    overflow: hidden;
}

.bg-gradient-cta {
    background: linear-gradient(135deg, #055c9d 0%, #003060 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-banner {
        margin-top: 66px;
    }
    
    .feature-banner, .demo-banner, .testimonial-banner {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
}



/* Dark Theme Styles */
body.dark-theme {
    background-color: #121212;
    color: #5c5d64;
  }
  
  .dark-theme .navbar {
    background-color: #1a1a1a !important;
  }
  
  .dark-theme .service-card,
  .dark-theme .software-card {
    background-color: #2d2d2d;
    color: #f0f8ff;
  }
  
  .dark-theme #branding-services,
  .dark-theme #management-software {
    background-color: #1e1e1e;
  }
  .dark-theme #portfolio  {
    background: rgba(30, 30, 30, 0.9);
  }
  .dark-theme .portfolio-item .overlay {
    background: rgba(30, 30, 30, 0.9);
  }
  
  .dark-theme footer {
    background-color: #1a1a1a !important;
  }
  
  .dark-theme .modal-content {
    background-color: #2d2d2d;
    color: #f0f8ff;
  }
  
  .dark-theme .card {
    background-color: #2d2d2d;
    color: #f0f8ff;
  }
  
  .dark-theme .list-group-item {
    background-color: #2d2d2d;
    color: #f0f8ff;
    border-color: #3d3d3d;
  }
  
  .dark-theme .alert-light {
    background-color: #3d3d3d;
    color: #f0f8ff;
    border-color: #4d4d4d;
  }
  .dark-theme #featured .lead{
    color: aliceblue;
  }
  .dark-theme .sms{
    color: aliceblue;
  }
  .dark-theme .dk-list, .dk-sys{
    color: #000;
  }
  /* Add more dark theme styles as needed for other elements */
