:root {
    --primary: #132f8f;
    --secondary: #1893bc;
    --secondary1: #ffff99;
    --dark: #333;
    --light: #f9f9f9;
    --gray: #555;
    --white: #fff;
    --black: #000;
}

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Serif', serif;
    color: #333;
    overflow-x: hidden;
}

.top-bar {
    font-size: 0.85rem;
    background-color: #1a1a1a;
}

.top-bar a {
    transition: color 0.2s ease;
    color: #2193d1 !important;
    text-decoration: none !important;
}

.top-bar a:hover {
    color: #ffff99 !important;
}

/* General Navbar Styles */
.navbar {
  background-color: var(--light);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 60px;
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background-color: var(--secondary1);
  border-radius: 0.25rem;
}

/* Dropdown menu */
.dropdown-menu {
  background-color: var(--white);
  border: 1px solid var(--secondary);
  border-radius: 0.5rem;
}

.dropdown-item {
  color: var(--gray);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--secondary1);
  color: var(--primary);
}

/* Button */
.btn-primary {
  background-color: var(--primary);
  border: none;
}

.btn-primary:hover {
  background-color: var(--secondary);
  color: var(--white);
}

/* Navbar toggler for mobile */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23132f8f' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Show dropdown menu on hover */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar-nav .dropdown .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: transform 0.3s;
  }

  .navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(0deg);
  }
}

.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.fact-item:hover .fact-icon {
    background: var(--primary);
    transform: scale(1.05);
}

.fact-item .fact-icon img {
    width: 60px; /* Adjust icon size */
    height: 60px; /* Adjust icon size */
    object-fit: contain;
    transition: all 0.5s ease;
}

.fact-item:hover .fact-icon img {
    filter: brightness(0) invert(1); /* Makes icon white on hover */
}

.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }


    .about-features span {
        font-size: 0.95rem;
    }
}

/* For very small devices */
@media (max-width: 480px) {
    .experience-badge span {
        font-size: 1.25rem;
    }
    
    .experience-badge p {
        font-size: 0.8rem;
    }
} 
.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    border-radius: 16px;
    object-fit: cover;
    width: 100%;
}

.mission-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
            height: 100%;
            border-left: 4px solid var(--primary);
        }

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 80%;
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .experience-badge {
        padding: 8px 16px;
        bottom: 15px;
        left: 15px;
    }
    
    .experience-badge span {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .experience-badge {
        padding: 6px 12px;
        bottom: 10px;
        left: 10px;
    }
    
    .experience-badge span {
        font-size: 1.5rem;
    }
    
    .experience-badge p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .experience-badge {
        padding: 5px 10px;
        border-radius: 8px;
    }
    
    .experience-badge span {
        font-size: 1.25rem;
    }
    
    .experience-badge p {
        font-size: 0.7rem;
    }
}

/* For very small devices (under 400px) */
@media (max-width: 400px) {
    .experience-badge {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        padding: 4px 8px;
    }
    
    .experience-badge span {
        font-size: 1rem;
    }
    
    .experience-badge p {
        font-size: 0.6rem;
        margin: 0;
    }
}

.section-header .section-subtitle {
    color: var(--secondary);
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.section-header .section-title {
    font-size: 2rem;
    margin-top: 10px;
    color: var(--primary);
}

.about-features span {
    font-size: 1rem;
    color: var(--gray);
}

.about-features i {
    font-size: 1.25rem;
}

.text-gray {
    color: var(--gray);
}

/* General Text Utility */
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-gray {
    color: var(--gray);
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.section-header .section-title {
    font-size: 2rem;
    color: var(--primary);
}

.section-header .section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--secondary);
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 1.25rem;
    position: relative;
    background-color: var(--light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary);
}

.service-icon i {
    color: var(--primary);
}

.service-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }
}

/* Programs Alt Section */
.programs-section-alt {
    background: url('img/background/world-map.jpg') center center/cover no-repeat;
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.programs-section-alt .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.programs-section-alt .container {
    z-index: 2;
    position: relative;
}

.program-card-alt {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.program-card-alt:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.program-flag-alt {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 5px;
    margin-right: 20px;
}

.program-content h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 5px;
}

.program-content p {
    font-size: 0.95rem;
    color: var(--secondary1);
    margin-bottom: 10px;
}

.program-link-alt {
    font-weight: 500;
    color: var(--secondary1);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}

.program-link-alt:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 767.98px) {
    .program-card-alt {
        flex-direction: column;
        text-align: center;
    }

    .program-flag-alt {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

/* Courses Section Alt */
.courses-section-alt {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.course-card-alt {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
}

.course-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.course-image-wrapper {
    position: relative;
    overflow: hidden;
}

.course-image-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card-alt:hover .course-image-wrapper img {
    transform: scale(1.05);
}

.course-image-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.course-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    color: #fff;
    background-color: #132f8f; /* Fallback if no class like bg-danger etc. */
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


.course-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #132f8f;
}

.course-desc {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
}

.course-meta i {
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .course-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* Testimonial Image Container */
    .testimonial-img-container {
        width: 100%;
        height: 300px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }

    /* Testimonial Images */
    .testimonial-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .testimonial-img:hover {
        transform: scale(1.03);
    }

    /* Testimonial Box */
    .testimonial-box {
        background-color: #f8f9fa;
        border-left: 4px solid var(--primary);
        transition: all 0.3s ease-in-out;
        height: 100%;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .testimonial-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .testimonial-box p {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 1rem;
    }

    /* Responsive adjustments */
    @media (max-width: 767.98px) {
        .testimonial-img-container {
            height: 250px;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .testimonial-box {
            min-height: auto;
        }
    }

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.section-title {
    font-size: 2rem;
    color: #222;
}

/* CTA Section Styling */
.cta-section {
    background: linear-gradient(to right, #0052D4, #1893bc, #6FB1FC);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    color: #fff;
  }
  
  .cta-content {
    animation: fadeInUp 1.2s ease-out both;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-illustration {
    max-width: 220px;
    margin-bottom: 30px;
    border-radius: 12px;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f0f0f0;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .cta-btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.25);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-text {
      font-size: 1rem;
    }
  
    .cta-illustration {
      max-width: 160px;
    }
  }

  .partners-section {
    position: relative;
    background-color: #f8f9fa;
  }
  
  .partners-logos {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
  }
  
  .partner-track {
    display: flex;
    gap: 60px;
    animation: scroll 25s linear infinite;
    width: max-content;
    align-items: center;
  }
  
  .partner-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .partner-item:hover {
    transform: scale(1.05);
    opacity: 1;
  }
  
  .partner-item img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
  
    100% {
      transform: translateX(-50%);
    }
  }
  
  

  .blog-post-glass {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }
  
  .blog-post-glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  }
  
  .blog-img-wrap {
    position: relative;
    flex-shrink: 0;
    width: 280px;
  }
  
  .blog-img-wrap img {
    width: 100%;
    border-radius: 16px;
  }
  
  .blog-post-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #007bff;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
  }
  
  .blog-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .blog-details h3 a {
    color: #111;
    text-decoration: none;
  }
  
  .blog-details h3 a:hover {
    color: #007bff;
  }
  
  .blog-details p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 12px;
  }
  
  .read-more {
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .blog-img-wrap {
      width: 100%;
    }
  
    .blog-post-glass {
      flex-direction: column;
    }
  }
  
  /* Footer Section Styles */
.footer {
    background-color: #0c1a2b;
    color: #ffffff;
    font-size: 15px;
    padding-top: 60px;
  }
  
  .footer .footer-logo {
    max-width: 160px;
    margin-bottom: 20px;
  }
  
  .footer .footer-widget {
    margin-bottom: 30px;
  }
  
  .footer .footer-widget h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer .footer-widget p {
    color: #ddd;
  }
  
  .footer-links,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li,
  .footer-contact li {
    margin-bottom: 10px;
  }
  
  .footer-links a,
  .footer-contact i {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact i {
    margin-right: 10px;
    color: #ffcc00;
  }
  
  .footer-social {
    margin-top: 20px;
  }
  
  .footer-social a {
    display: inline-block;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background: #ffcc00;
    color: #0c1a2b;
  }
  
  .footer-bottom {
    background-color: #08131f;
    color: #ccc;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
  }
  
  .footer-bottom p {
    margin: 0;
  }
  
  .footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
  }
  
  .footer-bottom-links li {
    display: inline-block;
    margin-left: 15px;
  }
  
  .footer-bottom-links a {
    color: #ccc;
    transition: color 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: #ffffff;
  }
  
  /* Responsive tweaks */
  @media (max-width: 767px) {
    .footer-bottom {
      text-align: center;
    }
    .footer-bottom-links {
      text-align: center;
      margin-top: 10px;
    }
  }

  /* about us page*/
  .hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sdg-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s;
    height: 100%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    border-left: 4px solid var(--primary);
}

.sdg-card:hover {
    transform: translateY(-10px);
    border-left: 4px solid var(--secondary);

}

.stats-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.core-values {
  list-style: none;
  padding: 0;
  margin: 0;
}

.core-values li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  background-color: #f9f9f9;
  border-left: 4px solid var(--secondary);
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  border-radius: 0.5rem;
}

.core-values li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: bold;
}


.service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.image-placeholder {
    background: #e0e0e0;
    border-radius: 15px;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    overflow: hidden;
}

.section-title {
    font-weight: 700;
    color: var(--primary);
    position: relative;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.history-section {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23189abc" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,128C672,128,768,160,864,176C960,192,1056,192,1152,170.7C1248,149,1344,107,1392,85.3L1440,64L1440,0L1392,0C1248,0,1152,0,1056,0C960,0,864,0,768,0C672,0,576,0,480,0C384,0,288,0,192,0C96,0,48,0,24,0L0,0Z"></path></svg>') no-repeat bottom/contain, var(--light);
    background-size: cover;
    padding: 5rem 0;
}

.vision-section {
    background-color: var(--primary);
    color: white;
    padding: 5rem 0;
    position: relative;
}

.vision-section .section-title {
    color: white;
}

.service-aboutus-card{
  background-color: var(--secondary1);
}

.stats-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary)
}

/* immigration */
/* Country Programs */
.country-program {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s;
  margin-bottom: 2rem;
}

.country-program:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.country-header {
  padding: 1.5rem;
  background: var(--primary);
  color: white;
}

.country-content {
  padding: 2rem;
  background: var(--white);
}

/* Section Titles */
.section-title {
  font-weight: 700;
  color: var(--primary);
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

/* Button Styles */
.btn-ghic {
  background: var(--primary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-ghic:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
      padding: 3rem 0;
      text-align: center;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
}

.timeline {
  margin-left: 1.5rem;
}
.timeline .position-relative {
  padding-left: 2rem;
}
.timeline span {
  width: 1rem;
  height: 1rem;
}

/* contactus */
.new-hero {
  background: linear-gradient(rgba(25, 47, 143, 0.9), rgba(24, 147, 188, 0.8)),
              url('img/contact-hero-bg.jpg') center/cover;
  color: white;
  padding: 8rem 0;
  text-align: center;
}

.contact-section {
  background: var(--light);
  padding: 4rem 0;
}

.contact-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 2.5rem;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}

.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(19, 47, 143, 0.25);
}

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 0.8rem 2.5rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.service-hours {
  border-left: 3px solid var(--secondary);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .new-hero {
      padding: 4rem 0;
  }
  
  .contact-form {
      padding: 2rem;
  }
}

.pattern-background {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48ZGVmcz48cGF0dGVybiBpZD0icGF0dGVybiIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiBwYXR0ZXJuVHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cmVjdCB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9InJnYmEoMCwgMCwgMCwgMC4wMykiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiLz48L3N2Zz4=");
  background-repeat: repeat;
  background-size: 40px 40px;
  padding: 60px 0;
}

.contact-form {
  background-color: white;
}
