
@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
/* Color Variables */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root { 
    --main-color: #D39B37;
    --text-color: #3267AB;
    --bg-color: #000000;
  }

/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}


/* Sticky Call Button Styling */
.call-button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it appears above other elements */
    border-radius: 50%;
    width: 60px; /* Adjust button size */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional shadow */
    transition: transform 0.1s ease, box-shadow 0.3s ease;
  }
  
  .call-button img {
    width: 70%; /* Size of the image inside the button */
    height: auto;
    border-radius: 50%;
  }
  
  .call-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
  }
  
  .call-button.shake {
    animation: shake 0.5s ease-in-out; /* Apply the shake animation */
  }
  
  /* Updated Keyframes for multi-directional shake */
  @keyframes shake {
    0%, 100% {
        transform: translate(0, 0); /* No movement */
    }
    20% {
        transform: translate(-5px, -5px); /* Move left and up */
    }
    40% {
        transform: translate(5px, 5px); /* Move right and down */
    }
    60% {
        transform: translate(-5px, 5px); /* Move left and down */
    }
    80% {
        transform: translate(5px, -5px); /* Move right and up */
    }
  }

/* Universal Section Heading */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
}

/* Horizontal Lines */
.horizontal-line {
    display: inline-block;
    width: 50px; /* Adjusted for perfect spacing */
    height: 2px;
    background-color: #0056b3; /* Blue line */
}

/* First Word (Lighter Style) */
.section-main {
    font-weight: normal;
    color: #444;
    font-size: 3rem;
}

/* Second Word (Bold & Blue) */
.section-highlight {
    font-weight: bold;
    font-size: 3rem;
    color: #0056b3; /* Blue text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header {
        flex-wrap: nowrap; /* Keep in a single line */
    }

    .section-main, .section-highlight {
        font-size: 2.5rem; /* Adjust for smaller screens */
    }

    .horizontal-line {
        width: 40px; /* Adjusted for spacing */
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-wrap: nowrap;
    }

    .section-main, .section-highlight {
        font-size: 2rem; /* Reduce size for mobile */
    }

    .horizontal-line {
        width: 30px;
    }
}


/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #000; /* Solid black when scrolled */
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important; /* Yellow on hover */
}

/* Custom Animated Toggler */
.navbar-toggler {
    border: none;
    background: transparent !important;
    outline: none !important;
    padding: 10px;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 0;
}

.hero-content {
    z-index: 1;
}

.hero-logo {
    height: 250px; /* Larger logo size */
    margin-bottom: 10px; /* Space between logo and heading */
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content .btn {
    font-size: 1.2rem;
    padding: 10px 30px;
    border-radius: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-content .btn:hover {
    transform: scale(1.05);
    background-color: #ffc107; /* Yellow on hover */
    border-color: #ffc107;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        height: 180px; /* Slightly smaller logo for mobile */
    }

    .hero-content h1 {
        font-size: 3rem; /* Larger heading for mobile */
    }

    .hero-content p {
        font-size: 1.2rem; /* Slightly smaller paragraph for mobile */
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
    }
}




#book-appointment {
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#appointmentForm {
    max-width: 500px;
    background: #fff;
}

#appointmentForm input, #appointmentForm textarea, #appointmentForm select {
    border-radius: 5px;
}

#appointmentForm button {
    background-color: #002855; /* Navy blue */
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#appointmentForm button:hover {
    background-color: #004080; /* Darker blue */
}


/* this is our work section  */
#our-work {
    background-color: #f9f9f9; /* Light background */
    padding: 60px 0;
    text-align: center;
}




  /* review css */

  .review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .review-header .horizontal-line {
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color:var(--text-color);
  }
  
  .review-part {
    font-weight: normal;
    font-size: 3rem;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .review-title {
    font-weight: bold;
    font-size: 3rem;
    color: var(--main-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, var(--text-color), var(--text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .testimonial-item img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .testimonial-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .testimonial-item .stars {
    color: #ffd700; /* Gold color for stars */
    margin-bottom: 10px;
  }
  
  .testimonial-item .review {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
  }
  
    
    .testimonial-carousel {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    
    .testimonial-item {
      display: none;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }
    
    .testimonial-item.active {
      display: block;
      opacity: 1;
    }
    
    
    .testimonial-item img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 3px solid #ddd;
    }
    
    .stars {
      color: gold;
      font-size: 1.2rem;
      margin: 10px 0;
    }
    
    .review {
      font-style: italic;
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
    }
    
    .carousel-indicators {
      display: flex;
      justify-content: center;
      margin-top: 15px;
    }
    
    .indicator {
      width: 10px;
      height: 10px;
      background-color: #ccc;
      border-radius: 50%;
      margin: 0 5px;
      cursor: pointer;
    }
    
    .indicator.active {
        background-color: #333;
      }



      /* footer  */
/* Full-Width Footer */
.footer {
    background-color: #002855; /* Navy Blue */
    color: #fff;
    padding: 50px 0;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Ensures content does not touch edges */
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

/* Footer Headings */
.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffc107; /* Yellow Accent */
}

/* Footer Links */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact i {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #ffc107;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    font-size: 0.9rem;
    width: 100%;
}

/* Make Footer Full Width */
.footer-wrapper {
    width: 100%;
    background-color: #002855;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }
    .footer-links, .footer-contact {
        display: inline-block;
    }
    .social-icons {
        justify-content: center;
    }
}






/* Section Styling */
.projecttop-section {
    
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:80px;
    padding: 20px;
    overflow: hidden;
    background: linear-gradient(to right, #fff, #ffffff);
  }
  
  /* Split Layout */
  .split-layout {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 80%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
  }
  
  .image-section {
    flex: 1;
    overflow: hidden;
  }
  
  .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.5s ease, filter 0.5s ease;
  }
  
  .image-section:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
  }
  
  .text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: var(--secondary-color);
  }
  .whitehouse-logo {
    width: auto;
    height: 80px; /* Reduced height for a smaller logo */
    margin-bottom: 20px; /* Spacing remains the same */
    object-fit: contain; /* Ensures the logo scales proportionally */
}

  
  
 
  
  .description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight:200px;
    line-height: 1.3;
    text-align: center;
    color: #000;
    margin-bottom: 30px;
  }
  
  /* Buttons */
  .button-group {
    display: flex;
    gap: 20px;
  }
  
  .primary-btn,
  .secondary-btn {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .primary-btn {
    background: var(--main-color);
    color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(19, 98, 7, 0.3);
  }
  
  .primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(19, 98, 7, 0.5);
  }
  
  .secondary-btn {
    border: 2px solid var(--text-color);
    color: var(--text-color);
    background: transparent;
  }
  
  .secondary-btn:hover {
    background: var(--text-color);
    color: white;
  }
  
  /* Responsive Styling */
  @media (max-width: 1024px) {
    .split-layout {
      flex-direction: column;
      height: auto;
    }
  
    .image-section {
      height: 50vh;
    }
  
    .text-section {
      padding: 30px;
    }
  
    .restaurant-title {
      font-size: 2rem;
    }
  
    .description {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .button-group {
      flex-direction: column;
      gap: 10px;
    }
  
    .primary-btn,
    .secondary-btn {
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .restaurant-title {
      font-size: 1.8rem;
    }
  
    .description {
      font-size: 0.9rem;
    }
  }
  

/* Mobile Specific Styles */
@media (max-width: 480px) {
    .restaurant-title {
        font-size: 1.6rem; /* Smaller font size */
    }

    .description {
        font-size: 0.9rem; /* Reduced font size for better fit */
    }

    .button-group {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 10px 15px; /* Reduced button padding */
        font-size: 0.85rem; /* Adjusted button text size */
        width: 100%; /* Full-width buttons for small screens */
        text-align: center;
    }
}






/* our projects */
/* Service Banner Section */
.service-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.service-banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 4em;
    color:#3267AB;
    animation: dropDown 2s ease forwards;
    margin-top: 50px;
}

.service-banner-content p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    color: #444;
    animation: bottomUp 3s ease forwards;
}

/* Services Category Section */
.category-section {
    background: white;
    padding: 60px 20px;
    text-align: center;
    color: #7a5b1f;
}

/* Services Container - Horizontal Scrolling */
.services-container {
    display: flex;
    gap: 25px;
    padding: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

/* WebKit Scrollbar Styling */
.services-container::-webkit-scrollbar {
    height: 6px;
}

.services-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.services-container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.services-container::-webkit-scrollbar-track {
    background: transparent;
}

/* Service Item Cards */
.service-item {
    min-width: 320px;
    max-width: 320px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Image Styling */
.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-item img:hover {
    transform: scale(1.1);
}

/* Title Styling */
.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.4em;
    color: #3267AB;
    margin-top: 10px;
    line-height: 1.4;
    text-transform: capitalize;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Hover Effect on Title */
.service-item h3:hover {
    color: var(--main-color);
}

/* Description Styling */
.service-description {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    font-size: 1em;
    color: #333;
    max-width: 600px;
    margin: 10px auto;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Button Styling */
.btn-view-work {
    display: inline-block;
    text-align: center;
    border: 2px solid #0056b3; /* Blue border */
    color: #0056b3; /* Blue text */
    font-size: 1em;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px; /* Rounded corners */
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.2s ease;
    margin-top: 15px;
}

/* Hover Effect */
.btn-view-work:hover {
    background: #0056b3; /* Blue background */
    color: #fff; /* White text */
    transform: scale(1.05);
}


/* Make Images Full Width on Small Screens */
@media (max-width: 768px) {
    .service-item img {
        height: 200px; /* Reduce height for smaller screens */
    }
}

@media (max-width: 480px) {
    .service-item img {
        height: 180px; /* Further reduced height for mobile */
    }

    .btn-view-work {
        font-size: 0.9em;
        padding: 8px 15px;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .services-container {
        gap: 20px;
    }

    .service-item {
        min-width: 280px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .services-container {
        gap: 15px;
    }

    .service-item {
        min-width: 260px;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .services-container {
        gap: 10px;
    }

    .service-item {
        min-width: 240px;
        max-width: 240px;
    }
}




.contact-section {
    margin-top:80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 50px;
    background: linear-gradient(to right, #ffffff, #eaeaea);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-container {
    max-width: 600px;
    overflow: hidden;
    border-radius: 15px;
}

.dynamic-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.dynamic-image:hover {
    transform: scale(1.05);
}

.contact-info {
    max-width: 600px;
    text-align: left;
    padding: 20px;
}

.contact-info h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 48px;
    color: #3267AB;
    margin-bottom: 20px;
}

.contact-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    
}

.contact-info p a{
    color: #3267AB;
    
}

.contact-info p span {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 20px;
    color: #3267AB;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .image-container {
        max-width: 100%;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-info p {
        font-size: 16px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 28px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .social-icons a img {
        width: 28px;
        height: 28px;
    }
}


/* unique */
.unique-container {
    margin-top:180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.unique-logo {
    margin-bottom: 10px;
    width: auto; /* Maintains proportional width */
    height: 100px; /* Sets the logo height to 80px */
    object-fit: contain; /* Ensures the logo scales proportionally */
}


.unique-content {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: space-between;
    width: 80%;
    gap:120px;
    max-width: 1000px;
    align-items: center;
    margin-top:20px;
}

.unique-heading {
    font-size: 46px;
    font-weight: bold;
    line-height: 1.2;
}

.unique-highlight {
    font-weight: bold;
    color: var(--text-color);
}

.unique-paragraph {
    font-size: 24px;
    line-height: 1.5;
    color: #555;
}

@media (max-width: 768px) {
    .unique-content {
        flex-direction: column;
        text-align: center;
    }

    .unique-heading {
        margin-bottom: 20px;
    }
}






/* Blog Section Styling */
#news-section {
    margin-top:110px;
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 2; /* Ensure it's above other elements */
}



.news-header p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

/* Blog Cards Grid */
.news-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
    gap: 30px;
    justify-content: center;
}

/* Blog Card */
.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.news-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Blog Image */
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Hide broken images gracefully */
.news-card img:not([src]) {
    display: none; /* Hide image if it's broken */
}

/* Blog Content */
.news-content {
    padding: 20px;
}

.news-content h3 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.4em;
    color: #3267AB;
    margin-bottom: 10px;
    text-decoration: none !important;
}

.news-content p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    text-decoration: none !important;
}

/* Read More Button */
.btn-news {
    display: inline-block;
    text-align: center;
    border: 2px solid #0056b3;
    color: #0056b3;
    font-size: 1em;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}



/* Hover Effect */
.btn-news:hover {
    background: #0056b3;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr; /* 1 column on mobile screens */
    }

    .news-card {
        width: 100%;
    }
}



