/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #ffffff; /* Keep this for general text on dark backgrounds */

    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-in-out;
}

/* Particle subtle effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background-image: radial-gradient(circle, #00bfff 1px, transparent 1px);
    background-size: 20px 20px;
    animation: particleMove 10s linear infinite;
    opacity: 0.4;
}
@keyframes particleMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #032c44; /* Dark blue background */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow */
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}
.logo span {
    font-size: 1.6rem;
    font-weight: bold;
    color: #00bfff;
    font-family: 'Orbitron', sans-serif;
}
.nav-links {
    list-style: none;
    display: flex; /* Default for desktop */
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #00bfff;
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: #00bfff;
}

/* Hamburger */
.hamburger {
    display: none; /* Hidden by default on large screens */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 101;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #00bfff;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Language Selector */
.language-select {
    position: relative;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.language-select button {
    background-color: #26435e;
    border: 1px solid #ccc;
    padding: 6px 8px;
    font-size: 14px;
    cursor: pointer;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: auto;
    justify-content: center;
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #26435e;
    border: 1px solid #ccc;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    width: 170px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 101;
}

.lang-dropdown li {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: white;
    gap: 10px;
}

.lang-dropdown li:hover {
    background-color: #0e6e62;
}

.lang-dropdown img {
    margin-right: 8px;
    width: 20px;
    height: 14px;
    object-fit: cover;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
    display: none !important;
}


/* Responsive Menu Behavior - ONLY Menu Related Changes */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0a0f1c;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    /* Language selector adjustments for mobile menu */
    .language-select {
        width: 100%;
        text-align: center;
        margin-top: 15px;
        position: relative;
        right: auto;
        top: auto;
        z-index: auto;
    }

    .language-select button {
        justify-content: center;
        margin: 0 auto;
    }

    .lang-dropdown {
        position: relative;
        width: 90%;
        margin: 10px auto 0;
        box-shadow: none;
        text-align: center;
    }
}

/* Hide hamburger in large screens */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    .nav-links {
        display: flex !important;
    }
    /* Reset language selector to desktop positioning */
    .language-select {
        position: relative;
        top: auto;
        right: auto;
        z-index: auto;
    }
    .lang-dropdown {
        position: absolute;
        right: 0;
        margin: 0;
    }
}


/* --- START: Your Original CSS for Content Sections (Restored) --- */


/* Contact Us Section */
#contact-us {
    background-color: #f0f2f5;
    color: #000000;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

#contact-us h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.contact-box {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #f0f2f5;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 1px solid transparent;
}

.contact-box:hover {
    transform: translateY(-8px);
    background-color: #f0f2f5;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
    border-color: #0096ff;
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333333;
}

.contact-box p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #666666;
}

.contact-box iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    #contact-us h2 {
        font-size: 28px;
    }

    .contact-box {
        max-width: 100%;
    }
}

.map-container {
    flex: 1;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.1);
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.3);
    z-index: 10;
}
.map-container iframe {
    width: 100%;
    height: 250px;
    border: 2px solid #0096ff;
    border-radius: 10px;
}

.contact-info {
    margin-bottom: 30px;
    text-align: center;
    color: #333333;
}

.contact-info p {
    margin: 5px 0;
    font-size: 16px;
}

.contact-info a {
    color: #007ac1;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    width: 36px;
    height: 36px;
    background-color: #cccccc;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.15);
    transition: all;
    background-color: #72b1dd;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(0.2);
}
#contact-us h2 {
    margin-bottom: 10px;
}

.contact-info {
    margin-top: 0;
    padding-top: 0;
    text-align: center;
    color: #333333;
}





.top-curve {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: transparent;
}

.top-curve svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Live-style background (new-section) - Original Appearance */
.new-section {
    background: radial-gradient(circle at 20% 20%, #0f4b82, #0c355e);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    transition: background 1s ease;
    width: 100%;
    box-sizing: border-box;
}

/* Floating background dots (optional) - Original Appearance */
.new-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveDots 60s linear infinite;
    z-index: 0;
}

@keyframes moveDots {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20%, -20%); }
}



/* Image container with subtle hover effect - Original Appearance */
.image-container {
    flex: 1 1 300px;
    text-align: right;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.image-container img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}


/* --- START: FORM SPECIFIC STYLING ENHANCEMENTS --- */

.main-container {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    /* Added subtle animation for the entire main container */
    animation: fadeIn 1s ease-out;
}

.main-titles {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 50px;
    /* Added a slight fade-in and slide-down effect */
    animation: slideInDown 0.8s ease-out forwards;
    animation-delay: 0.2s; /* Delay slightly after main container */
    opacity: 0; /* Start hidden for animation */
}

.main-titles h1 {
    font-size: 2.8em; /* Slightly larger for impact */
    color: #083c6f; /* Darker blue from your palette */
    padding-top: 20px;
    margin-bottom: 10px;
    font-weight: 750;
    letter-spacing: 0.5px; /* Subtle letter spacing */
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Soft text shadow */
}

.main-titles p {
    font-size: 1.2em; /* Adjusted for better readability on page */
    color: #4b7ce0; /* A pleasant medium blue from your palette */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.5;
}

/* Animations (from your code) */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New animation for main titles */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Form Styling (adapted and enhanced) */
.contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Slightly reduced gap for a tighter look */
    background-color: #f0f2f5; /* Light background for the form itself */
    padding: 40px;
    border-radius: 15px; /* Rounded corners */
    width: 100%;
    max-width: 650px; /* Increased max width for more space */
    box-sizing: border-box;
    margin-top: 30px; /* Space from main titles */
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft, modern shadow */
    position: relative; /* For potential pseudo-elements or inner animations */
    overflow: hidden; /* Ensures inner shadows/transitions are contained */
    /* Add a subtle initial animation for the form */
    animation: scaleIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 0.5s; /* Delay after titles appear */
    opacity: 0; /* Start hidden */
    transform: scale(0.9); /* Start slightly smaller */
}

/* Form entry animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Enhanced form title section (if you decide to show it) */
.contact-left-tittle {
    text-align: center;
    width: 100%;
    margin-bottom: 30px; /* Space below this title block */
    /* Use 'display: none' in HTML if you don't want these titles */
    /* If you want them, uncomment and style them */
     display: none; /* Keeping it hidden as per your current setup, but styled if enabled */
}

.contact-left-tittle h2 {
    font-weight: 700;
    color: #083c6f; /* Darker blue for these titles too */
    font-size: 2.2em; /* Similar to main h1 for consistency if shown */
    margin-bottom: 10px;
}

.contact-left-tittle h4 {
    font-weight: 500;
    color: #4b7ce0; /* Medium blue */
    font-size: 1.1em;
    margin-bottom: 15px;
}

.contact-left-tittle hr {
    border: none;
    width: 80px; /* Shorter HR for emphasis */
    height: 4px;
    border-radius: 10px;
    background-color: #00bfff; /* Bright blue accent */
    margin: 15px auto 0; /* Center it */
}

/* Input Wrapper for Labels and Inputs */
.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px; /* Slightly more space between label and input */
}

.input-wrapper label {
    color: #083c6f; /* Dark blue label text */
    font-size: 15px;
    font-weight: 600; /* Bolder labels */
    text-align: left;
    white-space: nowrap;
    line-height: 1.2;
    padding-left: 5px; /* Slight padding to align with input visual */
}

.input-wrapper .required {
    color: #e74c3c; /* A subtle red for required indicator */
    font-size: 12px;
    font-weight: normal; /* Normal weight for 'required' text */
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    line-height: 0;
}

/* Name Fields Group */
.form-group-name {
    display: flex;
    flex-direction: row;
    gap: 25px; /* More space between name inputs */
    width: 100%;
    align-items: flex-start; /* Align items to the top to keep labels consistent */
}

/* Ensure consistent height for input wrappers within this group */
.form-group-name .input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* General Input Styling */
.contact-inputs {
    width: 100%;
    height: 55px; /* Slightly taller inputs */
    border: 1px solid #ccc; /* Subtle light gray border */
    outline: none;
    padding: 0 18px; /* Adjusted padding */
    font-weight: 400; /* Regular font weight for input text */
    color: #333;
    border-radius: 8px; /* More modern, slightly larger border-radius */
    transition: all 0.3s ease-in-out; /* Smooth transition for all properties */
    background-color: #ffffff; /* Explicit white background */
    box-sizing: border-box;
    font-size: 16px; /* Larger font size inside inputs */
    text-align: left;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.08); /* Inner shadow for depth */
}

.contact-left textarea {
    height: 160px; /* Taller textarea */
    padding: 15px 18px; /* Consistent padding */
    border-radius: 8px; /* Match input field radius */
    resize: vertical; /* Allow vertical resizing only */
    background-color: #ffffff;
    text-align: left;
}

.contact-inputs:focus {
    border: 2px solid #00bfff; /* Bright blue border on focus */
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.4), inset 0 1px 3px rgba(0,0,0,0.08); /* Glowing effect with inner shadow */
    transform: translateY(-2px); /* Slight lift on focus */
    background-color: #f7fcff; /* Very slight light blue tint on focus */
}

.contact-inputs::placeholder {
    color: #999; /* Softer, slightly darker placeholder color */
    opacity: 1; /* Ensure placeholder is always visible */
    transition: color 0.3s ease;
}

.contact-inputs:focus::placeholder {
    color: transparent; /* Hide placeholder on focus for cleaner look */
}

/* Button Styling */
.contact-left button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px; /* More generous padding */
    font-size: 20px; /* Larger font for button */
    color: white;
    gap: 10px;
    border: none;
    border-radius: 8px; /* Match input field radius */
    background: linear-gradient(135deg, #022d76 0%, #083c6f 100%); /* Gradient background */
    transition: all 0.3s ease-in-out; /* Smooth transition for everything */
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px; /* More space above the button */
    box-shadow: 0 8px 20px rgba(2, 45, 118, 0.3); /* Stronger shadow */
    letter-spacing: 1px; /* Subtle letter spacing */
    position: relative;
    overflow: hidden; /* Hide overflow for hover effect */
}

.contact-left button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Light overlay for shine effect */
    transform: skewX(-30deg);
    transition: all 0.5s ease;
}

.contact-left button:hover::before {
    left: 100%;
}

.contact-left button:hover {
    transform: translateY(-4px); /* More pronounced lift on hover */
    box-shadow: 0 12px 25px rgba(2, 45, 118, 0.45); /* Enhanced shadow */
    background: linear-gradient(135deg, #083c6f 0%, #4b7ce0 100%); /* Slightly shifted gradient on hover */
}

.contact-left button:active {
    transform: translateY(0); /* "Press down" effect on click */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #022d76 0%, #083c6f 100%); /* Revert to original background */
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .main-titles h1 {
        font-size: 2.2em; /* Adjusted for smaller screens */
    }

    .main-titles p {
        font-size: 1em; /* Adjusted for smaller screens */
    }

    .contact-left {
        padding: 25px; /* Reduced padding on smaller screens */
        gap: 15px;
    }

    .form-group-name {
        flex-direction: column; /* Stack name inputs on smaller screens */
        gap: 15px;
    }

    .contact-inputs {
        height: 50px; /* Slightly smaller height on mobile */
        font-size: 15px;
    }

    .contact-left textarea {
        height: 120px; /* Smaller textarea on mobile */
    }

    .contact-left button {
        padding: 15px 30px; /* Smaller button padding on mobile */
        font-size: 18px;
    }
}
/* --- END: FORM SPECIFIC STYLING ENHANCEMENTS --- */


/* Original styles for other sections (contact details, footer, etc.) remain below */

.top-curve {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: transparent;
}

.top-curve svg {
    display: block;
    width: 100%;
    height: 100px;
}

.new-section {
    background: radial-gradient(circle at 20% 20%, #0f4b82, #0c355e);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    transition: background 1s ease;
    width: 100%;
    box-sizing: border-box;
}

.new-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveDots 60s linear infinite;
    z-index: 0;
}

@keyframes moveDots {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20%, -20%); }
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 40px;
    padding: 0 20px;
}

.image-container {
    flex: 1 1 300px;
    text-align: right;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.image-container img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #05345d;
    text-align: center;
    padding: 20px 20px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0;
}

/* Contact Us Section */
#contact-us {
  background-color: #f0f2f5;  
  color: #000000; /* Darker text */
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

#contact-us h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-box {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  background-color: #f0f2f5; /* Lighter box background */
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* Light shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 1px solid transparent;
}

.contact-box:hover {
  transform: translateY(-8px);
  background-color: #f0f2f5; /* Lighter blue on hover */
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.2); /* Lighter blue shadow */
  border-color: #0096ff; /* Lighter blue border */
}

.contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333333; /* Darker text */
}

.contact-box p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #666666; /* Lighter grey text */
}

.contact-box iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  #contact-us h2 {
    font-size: 28px;
  }

  .contact-box {
    max-width: 100%;
  }
}

.map-container {
  flex: 1;
  min-height: 300px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 150, 255, 0.1); /* Lighter blue shadow */
}

.map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(0, 150, 255, 0.3); /* Lighter blue shadow */
  z-index: 10;
}
.map-container iframe {
  width: 100%;
  height: 250px;
  border: 2px solid #0096ff; /* Lighter blue border */
  border-radius: 10px;
}

.contact-info {
  margin-bottom: 30px;
  text-align: center;
  color: #333333; /* Darker text */
}

.contact-info p {
  margin: 5px 0;
  font-size: 16px;
}

.contact-info a {
  color: #007ac1; /* Slightly darker blue link */
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
  width: 36px;
  height: 36px;
  background-color: #cccccc; /* Lighter background */
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
  transition: all;
  background-color: #72b1dd;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(0.2); /* Slightly inverted to work with light background */
}
#contact-us h2 {
  margin-bottom: 10px; /* Reduced from default (like 30px or more) */
}

.contact-info {
  margin-top: 0;
  padding-top: 0;
  text-align: center;
  color: #333333; /* Darker text */
}








.contact-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.contact-block {
  max-width: 300px;
  padding: 20px;
  border-left: 3px solid #0c355e;
  background-color: #f5f7fa;
  border-radius: 8px;
}

.contact-block h2 {
  font-size: 20px;
  color: #0c355e;
  margin-bottom: 10px;
}

.contact-block p {
  font-size: 16px;
  margin: 5px 0;
  color: #007ac1;
}

.social-media-links {
  margin-top: 40px;
  text-align: center;
}

.social-media-links h3 {
  margin-bottom: 10px;
}

.social-media-links a {
  margin: 0 10px;
  display: inline-block;
}
















/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #10307a; /* Lighter grey */
  background-color: #f0f2f5; /* Light background */
  border-top: 1px solid #052653; /* Lighter border */
  margin-top: 80px;
}
