/*===============================
    GLOBAL STYLES
================================*/
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

body {
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    background-color: rgba(68, 124, 51, 0.683)
}

.offset:before {
    display: block;
    margin-top: -4rem;
}

    /*===============================
        NAVIGATION STYLING
    ================================*/
    .navbar {
        text-transform: uppercase;
        font-weight: 450;
        font-size: 0.9rem;
        letter-spacing: 0.1rem;
        background: white;
        padding: 0.5rem 1rem;
    }

    .navbar-brand img {
        height: 2rem;
    }

    .navbar-nav li {
        padding-right: 0.7rem;
    }

    .navbar-light .navbar-nav .nav-link {
        color: #000000;
        padding-top: 0.8rem;
    }

    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .nav-link:hover {
        color: #000000;
    }

    /* Responsive center phone number */
    .navbar-phone {
        color: black;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    @media (max-width: 768px) {
        .navbar-nav {
            text-align: center;
        }

        .navbar-nav li {
            padding: 0.5rem 0;
        }

        .navbar-phone {
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
    }
/*===============================
    LANDING PAGE
================================*/
.home-inner {
    background-image: url(Images/Slide12.png);
}

.caption {
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 38%;
    z-index: 1;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}

.caption h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: .3rem;
    text-shadow: .1rem .1rem .8rem rgb(71, 250, 0);
    padding-bottom: 1rem;
}

.caption h3 {
    font-size: 20px;
    text-shadow: .1rem .1rem .5rem rgb(94, 255, 0);
    padding-bottom: 1.6rem;
}

.btn-lg {
    border-width: medium;
    border-radius: 0;
    padding: .6rem 1.3rem;
    font-size: 1.1rem;
}

/*===============================
    SERVICES SECTION
================================*/
.jumbotron {
    background-color: #222222;
    border-radius: 1;
    margin: 2px;
}

h3.heading {
    font-size: 1.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.heading-underline {
    width: 3rem;
    height: .2rem;
    background-color: #0e8f4b;
    margin: 0 auto 2rem;
}

.services h5 {
    font-size: 13px;
    text-transform: uppercase;
    padding-top: .7rem;
}

/*===============================
    TOUR SECTION
================================*/
.container {
    margin-top: 2.5%;
    display: flex;
    gap: 20px; /* Adjust the gap size as needed */
}

.inner {
    overflow: hidden;
}

.inner img {
    transition: all 1.5s ease;
}

.inner:hover img {
    transform: scale(1.5);
    width: 30%;
}

.card-title {
    font-size: 25px;
    font-weight: 700;
}


/*===============================
    PLANS SECTION
================================*/
.plans, .dedicated-offices, .daily-weekly, .contact {
    padding: 10px;
    text-align: center;
    background-color: #222222;
}

.plan-cards, .office-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.plan-card, .office-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(38, 249, 1);
    text-align: center;
}

.plan-card h3, .office-card h3 {
    color: #007BFF;
    margin-bottom: 16px;
}

.plan-card p, .office-card p {
    margin: 8px 0;
    color: #333;
}

/*===============================
    FLEXBOX LAYOUT FOR PLANS
================================*/
.plan-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Monthly Plans - First row (4 items) */
.plan-card:nth-child(-n+4) {
    flex: 1 1 calc(25% - 24px);
    min-width: 250px;
}

/* Private Offices - Second row (2 items) */
.plan-card:nth-child(n+5):nth-child(-n+6) {
    flex: 1 1 calc(50% - 24px);
    min-width: 250px;
}

/* Daily & Weekly Plans - Third row (2 items) */
.plan-card:nth-child(n+7) {
    flex: 1 1 calc(50% - 24px);
    min-width: 250px;
}

/*===============================
    RESPONSIVE DESIGN FIXES
================================*/
@media (max-width: 1024px) {
    .plan-card {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .plan-card {
        flex: 1 1 100%;
        max-width: 450px;
    }
}




/* Add-ons Section Styling */
.addons-section {
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f9fa; /* Light grey background */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(2, 247, 255, 0.1);
    text-align: center;
}

.addons-section .heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00a2ff;
    text-align: center;
    box-shadow: #22bd07;
    
}

.addons-list {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.addons-list p {
    font-size: 16px;
    margin: 8px 0;
    color: #313131;
    text-align: center;
}

.addons-list p strong {
    color: #444444; /* Bootstrap primary color */
}



/*===============================
    CONTACT SECTION
================================*/

/* General Styles */
.contact-section {
    width: 98%;
    height: 99%;
    background: #343a40;
    margin: 10px auto;
    border-radius: 8px;
}

/* Flexbox Layout: Split into two equal sections */
.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 50px;
}

/* Left Side: Contact Info */
.contact-info {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-info p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Contact Logo */
.contact-logo {
    width: 120px;
    display: block;
    margin-top: 10px;
    padding: 5px;
    border-radius: 5px;
    background-color: whitesmoke;
}

/* Right Side: Contact Form */
.contact-form {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
}

/* Form Inputs */
.input-group {
    display: flex;
    align-items: center;
    background: white;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.input-group i {
    margin-right: 10px;
    color: #666;
}

.input-group input,
.input-group textarea {
    border: none;
    width: 100%;
    padding: 8px;
    outline: none;
    font-size: 16px;
}

.input-group textarea {
    height: 100px;
    resize: none;
}

/* Submit Button */
.submit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

.submit-btn:hover {
    background: #45a049;
}

/* Divider */
.footer-divider {
    border: 0;
    border-top: 1px solid #444;
    margin: 20px 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-info, 
    .contact-form {
        width: 100%;
        text-align: center;
    }

    .contact-logo {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}



/*===============================
    FOOTER SECTION
================================*/
/* Footer Styles */
#footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.container {
    position: relative;
    max-width: 1800px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.footer-logo {
    flex: 1;
    text-align: left;
}

.footer-logo img {
    width: 70px;
    height: 70px;
}

.tagline {
    margin-top: 10px;
    font-size: 14px;
    color: #bbb;
}

.footer-info {
    flex: 1;
    text-align: center;
}

.footer-info h4 {
    margin-bottom: 30px;
}

.footer-info p {
    margin: 30px 0;
}

.footer-info a {
    color: #f8b400;
    text-decoration: none;
}

.footer-social {
    flex: 1;
    text-align: right;
}

.footer-social h3 {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-links img {
    width: 40px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #444;
    margin: 10px 0;
}

.footer-bottom {
    padding-bottom: 1px;
    text-align: center;
    font-size: 14px;
    color: #bbb;
}







/*===============================
    BOOKS SECTION
================================*/

.book-card {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 15px auto;
  padding: 15px 10px 50px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.book-card:hover {
  transform: translateY(-5px);
}

.book-cover {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.book-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Borrow Button */
.borrow-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.borrow-button:hover {
  background-color: #218838;
  transform: translateX(-50%) scale(1.05);
}

/* Responsive grid for multiple cards */
.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
  .book-card {
    max-width: 160px;
    padding: 12px 8px 50px;
  }

  .book-title {
    font-size: 14px;
  }

  .borrow-button {
    font-size: 13px;
    padding: 6px 16px;
  }
}

@media (max-width: 480px) {
  .grid-container {
    flex-direction: column;
    align-items: center;
  }

  .book-card {
    max-width: 90%;
  }
}


