* {
    margin: 0;
    padding: 0;
    font-family: 'sans-serif';
}

body {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

code, pre {
    font-family: 'Fira Code', monospace; /* For code blocks */
}

/* Hide scrollbar for Chrome, Safari, and Opera */
body::-webkit-scrollbar {
    display: none;
}


/* Logo Styles */
.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand img {
    width: 2.5rem;
    /* Base size */
    height: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hover Effects */
.navbar-brand:hover img {
    transform: rotate(-15deg) scale(1.5);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Navbar Border Styles */
.navbar {
    padding: 0 200px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.navbar.scrolled {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Optional: Gradient Border Effect */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    pointer-events: none;
}

/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1020; /* Ensure it stays above other content */
    transition: all 0.3s ease;
}


/* Ensure body doesn't overlap with navbar */
body {
    padding-bottom: 0px;    /* Adjust based on your navbar height */
}

/* Optional: Add a subtle shadow when scrolled */
.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}



/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    body {
        padding-top: 5px; /* Adjust for mobile navbar height */
        padding-bottom: 5px;
    }

    .gradient-background {
        height: fit-content;
    }
}

/* Animation when navbar scrolls */
.navbar.scrolled .navbar-brand img {
    transform: scale(0.9);
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .navbar-brand img {
        width: 2rem;
        height: 2rem;
    }

    .gradient-background {
        height: fit-content;
    }
}

/* Focus State for Accessibility */
.navbar-brand:focus img {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}



/* Nav Links Styling */
.nav-link {
    position: relative;
    color: #ffffff !important;
    text-shadow: 0 0 15px rgb(255, 255, 255);
    padding: 0.5rem 1rem !important;
    margin: 0 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hover Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active State Styling */
.nav-link.active {
    color: #fff !important;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.nav-link.active::after {
    width: 100%;
    background: #4a90e2;
}

/* Hover Effects */
.nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .nav-link {
        margin: 0.5rem 0;
        padding: 0.8rem 1.5rem !important;
        border-radius: 8px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: none;
    }

    .nav-link.active {
        background: rgba(74, 144, 226, 0.1);
    }
}

/* Focus State for Accessibility */
.nav-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
    transform: scale(1.05);
}



/* Portfolio Button Styles */
.portfolio {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(187, 52, 52, 0.15);
    color: #fff !important;
    padding: 0px 30px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 0 12px rgba(255, 255, 255, 0.1);
}

/* Hover Effect */
.portfolio:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.1) 100%);
}

/* Shine Effect Animation */
.portfolio::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 25%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 75%);
    transform: rotate(45deg);
    animation: buttonShine 4s infinite linear;
    opacity: 0.5;
}

@keyframes buttonShine {
    from {
        transform: translateX(-100%) rotate(45deg);
    }

    to {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Active/Pressed State */
.portfolio:active {
    transform: translateY(1px) scale(0.98);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 0 8px rgba(255, 255, 255, 0.1);
}

/* Focus State */
.portfolio:focus {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .portfolio {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .portfolio::after {
        animation-duration: 6s;
    }
}

/* Optional: Add pulse animation */
@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@media (hover: hover) {
    .portfolio {
        animation: buttonPulse 3s ease-in-out infinite;
    }
}



/* Offcanvas Menu Fix */
.offcanvas {
    background-color: rgba(var(--bs-dark-rgb), 0.98) !important;
    backdrop-filter: blur(15px);
    color: #fff;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    color: #fff !important;
    font-weight: 600;
}

/* Close Button Styling */
.btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Nav Links in Offcanvas */
.offcanvas-body .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.offcanvas-body .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
}

/* Toggle Button Visibility Fix */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.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(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.25em;
    height: 1.25em;
}

.navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-toggler:hover .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(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


@media (max-width: 991.98px) {
    body {
        padding-top: 0px; /* Adjust for mobile navbar height */
    }

    .hero-section {
        /* padding-top: -56px; */   /* not Working */
        min-height: calc(100vh - 56px);
    }

    .offcanvas {
        background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
        background-size: 180% 180%;
        animation: gradient-animation 18s ease infinite;
    }
}


/* Hero Section */
.hero-section {
    padding-top: 0px; 
    min-height: calc(100vh - 60px); 
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gradient-background {
    background: linear-gradient(700deg, #00bfff, 
    #ff4c68, #ef8172);
    background-size: 15vh;
    animation: gradient-animation 18s ease infinite;
  }

@keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight {
    color: #ffffff; /* Accent color */
    color: #0056b3 ;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    margin-bottom: 1.5rem;
}

.typed-text {
    color: rgb(0, 0, 0); /* Accent color */
    font-weight: 600;
    font-size: larger;
}

.hero-description {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2rem;
}



/* Common Button Styling */
.button {
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    margin-right: 10px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: none;
}

/* View My Work Button */
.view-work {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.view-work:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: scale(1.05);
}

/* Let's Collaborate Button */
.collaborate {
    background: transparent;
    border: 2px solid black;
    color: black;
}

.collaborate:hover {
    background: black;
    color: white;
    transform: scale(1.05);
}


.hero-image {
    /* margin-bottom: -50px; */
    max-width: 400px;
    /* margin-left: auto; */
}

.profile-image {
    width: 100%;
    border-radius: 50px;
    box-shadow: 10 10px 10px rgba(0, 0, 0, 0.3);
}





.social-links-hero {
    display: flex;
    gap: 1.4rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.social-links-hero a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-links-hero a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    top: 0;
    left: -100%;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-links-hero a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.social-links-hero a:hover::before {
    left: 0;
}



@media (max-width: 768px) {
    .social-links-hero {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
        justify-content: center;
}
    
    .social-links-hero a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .social-links-hero {
        display: flex;
        gap: 1rem;
        margin-top: 1.2rem;
        justify-content: center;
    }

    .social-links-hero a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .social-links-hero {
        gap: 0.6rem;
    }
    .social-links-hero a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

















/* Hero Section Layout */
.gradient-background.hero-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 5%;
}


.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333; /* adjust to your preference */
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #555;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-button {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-button-primary {
    background-color: #2563eb; /* example blue */
    color: white;
}

.hero-button-secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-image {
    max-width: 400px;
    margin-left: 50px;
}

.profile-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}



/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-container {
        padding: 2rem;
        flex-direction: column;
        text-align: left;
    }

    .hero-image {
        margin: 2rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        margin: 0 5px;
    }

    .hero-button {
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .button {
        width: 100%;
        text-align: center;
    }
}






.navbar {
    /* margin-bottom: 20px; */
    padding: 10px 10px;
}



/* CSS */
.about-section {
    padding: 10rem 1rem;
    height: 100vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1;
    min-width: 300px;
    
}


.skills-visual {
    flex: 1;
    min-width: 300px;
}



.section-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3498db;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #020303;
    margin-bottom: 2rem;
}

/* Soft Skills Grid */
.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.skill-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-3px);
}

.skill-card i {
    color: #3498db;
    font-size: 1.2rem;
    width: 30px;
}

/* Progress Bars */
.skill-meter {
    margin: 1.5rem 0;
    transition: 0.1s ease, transform 0.1s ease;
}

.skill-meter:hover {
    transform: scale(1.05);
}

.skill-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.skill-info i {
    font-size: 1.5rem;
    color: #2c3e50;
}

.meter-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: #3498db;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Resume Button */
.resume-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resume-button:hover {
    background: #2980b9;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        padding: 0 40px;
        gap: 2rem;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
    
    .section-heading {
        font-size: 2rem;
    }

    .gradient-background {
        height: fit-content;
    }
}














/* Professional Projects Grid */
.projects-section {
  padding: 60px 20px;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  /* background: #f8fafc; */
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  height: 3px;
  background: #3b82f6;
  border-radius: 2px;
}

/* Mobile Carousel Layout */
.projects-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding-bottom: 20px;
  /* Hide scrollbar for Chrome, Safari and Opera */
  &::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.project-card {
  scroll-snap-align: start;
  flex: 0 0 85%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  transition: all 0.3s ease;
}

.card-image {
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
  transform: scale(1.03);
}

.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.project-desc {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-stack span {
  background: #f1f5f9;
  color: #334155;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #3b82f6;
  color: white;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.btn i {
  margin-left: 6px;
  font-size: 0.8rem;
}

/* Navigation Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #3b82f6;
  transform: scale(1.2);
}

/* Desktop Layout (3 columns) */
@media (min-width: 992px) {
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    overflow-x: visible;
  }

  .project-card {
    flex: none;
    padding: 18px;
  }

  .card-image {
    height: 150px;
  }

  .carousel-dots {
    display: none;
  }
}











/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #181818;
    height: 100vh;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
  }
  
  .contact-form,
  .contact-info {
    flex: 1;
  }


  
  .contact-form h2,
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  /* Form Styles */
  .form-group {
    position: relative;
    margin-bottom: 20px;
    
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #007bff;
    outline: none;
  }
  
  .form-group label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .form-group input:focus + label,
  .form-group textarea:focus + label,
  .form-group input:not(:placeholder-shown) + label,
  .form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 5px;
    font-size: 0.8rem;
    color: #007bff;
    background: #f9f9f9;
    padding: 0 5px;
  }
  
  button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #0056b3;
  }
  
  /* Contact Info Styles */
  .contact-info p {
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    color: #007bff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #0056b3;
  }
  
  /* Map Embed */
  .map-embed {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
  }


/* Ensure input text is visible */
.contact-form input,
.contact-form textarea {
    color: white !important; /* Change text color to white */
}

/* Placeholder text color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Light white for better visibility */
}

/* Ensure text remains white when typing */
.contact-form input:focus,
.contact-form textarea:focus {
    color: white !important;
}


@media (max-width: 992px) {
    .contact-container {
        flex-direction: column; /* Stack form and info vertically */
        align-items: center; /* Center align items */
        gap: 40px; /* Increase gap for better spacing */
    }

    .contact-form,
    .contact-info {
        width: 100%; /* Full width for smaller screens */
        max-width: 600px; /* Limit maximum width */
    }
}

@media (max-width: 768px) {
    .contact-container {
        gap: 30px; /* Reduce gap for tablets */
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 1.8rem; /* Slightly smaller font size for tablets */
    }
}

@media (max-width: 576px) {
    .contact-container {
        gap: 20px; /* Reduce gap for mobile devices */
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 1.5rem; /* Smaller font size for mobile */
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem; /* Smaller font size for inputs */
    }

    button[type="submit"] {
        padding: 8px 16px; /* Smaller button padding for mobile */
        font-size: 0.9rem; /* Smaller font size for button */
    }
}

