@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  /* background: linear-gradient(135deg, #000000, #1a0000, #330000); */
  background: #0d0d0d;

  color: #fff;
  overflow-x: hidden;
}




/* Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  margin: 0 25px;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff0000;
  border-bottom: 2px solid #ff0000;
}

/* Home Section */
.home-section {
  display: flex;
   background: rgb(38, 36, 36);
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 100px 10%;
}

.home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 80px;
}

/* Left content */
.home-left {
  flex: 1;
}

.home-left h2 {
  font-size: 1.5rem;
  color: #bbb;
}

.name {
  font-size: 3rem;
  color: #ff0000;
  font-weight: 700;
}

.role {
  font-size: 1.4rem;
  margin: 15px 0;
}

.typing-text {
  color: #b1ae09;
  border-right: 3px solid #ff0000;
  padding-right: 5px;
}

.summary {
  max-width: 550px;
  margin-top: 15px;
  line-height: 1.7;
  color: #ddd;
}

/* Social Links */
.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #b1ae09;
  font-size: 1.6rem;
  margin-right: 25px;
  transition: all 0.3s;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Resume button */
.resume-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  border: 2px solid #ff0000;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.resume-btn:hover {
  background: #ff0000;
  color: #000;
  box-shadow: 0 0 15px #ff0000;
}

/* Profile image */
.home-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.profile-photo {
  width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff0000;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}



/* ABOUT SECTION */
.about-section {
  padding: 120px 10%;
  margin-top: -80px;
background: rgb(38, 36, 36);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 320px;
  height: 380px;
  border-radius: 20px;
  border: 3px solid #ff0000;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.about-photo:hover {
  transform: scale(1.05);
}

.about-right {
  flex: 1.2;
}

.about-right h2 {
  font-size: 2.2rem;
  color: #ff0000;
  margin-bottom: 20px;
  position: relative;
}

.about-right h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ff0000;
}

.about-right p {
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Skill Icons */
.skills {
  margin-top: 30px;
}

.skills h3 {
  color: #ff0000;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.skill-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.skill-icons i {
  font-size: 2rem;
  color:#b1ae09;
  transition: transform 0.3s, color 0.3s;
}

.skill-icons i:hover {
  color: #fff;
  transform: scale(1.3);
}
section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* EDUCATION & EXPERIENCE SECTION */
.education-section {
  background: rgb(38, 36, 36);
  margin-top: -100px;
  color: #fff;
  padding: 120px 10%;
  position: relative;
}

.education-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 60px;
  position: relative;
}

.education-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ff0000;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline base */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: #ff0000;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline items */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-content {
  background: #111;
  padding: 25px 30px;
  border-radius: 10px;
  border: 1px solid #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-8px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ff0000;
  border-radius: 50%;
  top: 20px;
  z-index: 1;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

/* Text */
.timeline-content h3 {
  color: #ff0000;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.timeline-content h4 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}

.timeline-content p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 8px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 20px;
  }
  .timeline-item.right {
    left: 0;
  }
  .timeline-item::before {
    left: 0;
  }
}


/* PROJECTS SECTION */
.projects-section {
   padding: 120px 10% 60px 10%;
  background: rgb(38, 36, 36);
  margin-top: -120px;
  color: #fff;
}

.projects-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
}

.projects-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ff0000;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: #111;
  border: 1px solid #ff0000;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.project-card h3 {
  color: #ff0000;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.project-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 15px;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tech-icons i {
  font-size: 1.8rem;
  color: #b1ae09;
  transition: transform 0.3s ease, color 0.3s ease;
}

.tech-icons i:hover {
  color: #fff;
  transform: scale(1.3);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .projects-section {
    padding: 80px 5%;
  }

  .tech-icons i {
    font-size: 1.6rem;
  }
}



.certifications-section {
  padding: 80px 10%;
  background: rgb(38, 36, 36);
  margin-top: -30px;
  color: #fff;
}

.certifications-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
}

.certifications-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ff0000;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.certifications-grid, .hobbies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.cert-card, .hobby-card {
  background: #111;
  border: 1px solid #ff0000;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover, .hobby-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.cert-card i, .hobby-card i {
  font-size: 2rem;
  color: #1893e4;
  margin-bottom: 12px;
}

.cert-card p, .hobby-card p {
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.hobby-card ul {
  margin-top: 10px;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 20px;
}

.hobbies-section h3 {
  color: #ff0000;
  font-size: 1.8rem;
  margin-bottom: 30px;
}



.contact-section {
  padding: 100px 10%;
  margin-top: -100px;
  background: rgb(38, 36, 36);
  color: #fff;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 60px;
  position: relative;
}

.contact-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ff0000;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background: #111;
  border: 1px solid #ff0000;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

.contact-card i {
  font-size: 2rem;
  color: #b1ae09;;
  margin-bottom: 12px;
}

.contact-card h3 {
  color: #ff0000;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-card p a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card p a:hover {
  color: #fff;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h3 {
  color: #ff0000;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ff0000;
  background: #111;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff0000;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.contact-form button {
  padding: 12px 20px;
  border-radius: 25px;
  border: 2px solid #ff0000;
  background: #111;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #ff0000;
  color: #000;
  box-shadow: 0 0 15px #ff0000;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #000000, #1a0000, #330000);
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  margin: 0 25px;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff0000;
  border-bottom: 2px solid #ff0000;
}

/* Home Section */
.home-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 100px 10%;
}

.home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 80px;
}

/* Left content */
.home-left {
  flex: 1;
}

.home-left h2 {
  font-size: 1.5rem;
  color: #bbb;
}

.name {
  font-size: 3rem;
  color: #ff0000;
  font-weight: 700;
}

.role {
  font-size: 1.4rem;
  margin: 15px 0;
}

.typing-text {
  color: #fff;
  border-right: 3px solid #ff0000;
  padding-right: 5px;
}

.summary {
  max-width: 550px;
  margin-top: 15px;
  line-height: 1.7;
  color: #ddd;
}

/* Social Links */
.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #ff0000;
  font-size: 1.6rem;
  margin-right: 25px;
  transition: all 0.3s;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Resume button */
.resume-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  border: 2px solid #ff0000;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.resume-btn:hover {
  background: #ff0000;
  color: #000;
  box-shadow: 0 0 15px #ff0000;
}

/* Profile image */
.home-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.profile-photo {
  width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff0000;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}



/* ABOUT SECTION */
.about-section {
  padding: 120px 10%;
  background: #0d0d0d;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 320px;
  height: 380px;
  border-radius: 20px;
  border: 3px solid #ff0000;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.about-photo:hover {
  transform: scale(1.05);
}

.about-right {
  flex: 1.2;
}

.about-right h2 {
  font-size: 2.2rem;
  color: #ff0000;
  margin-bottom: 20px;
  position: relative;
}

.about-right h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ff0000;
}

.about-right p {
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Skill Icons */
.skills {
  margin-top: 30px;
}

.skills h3 {
  color: #ff0000;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.skill-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.skill-icons i {
  font-size: 2rem;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}

.skill-icons i:hover {
  color: #ff0000;
  transform: scale(1.3);
}
section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* EDUCATION & EXPERIENCE SECTION */
.education-section {
  background: #0d0d0d;;
  color: #fff;
  padding: 120px 10%;
  position: relative;
}

.education-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 60px;
  position: relative;
}

.education-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ff0000;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline base */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: #ff0000;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline items */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-content {
  background: #111;
  padding: 25px 30px;
  border-radius: 10px;
  border: 1px solid #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-8px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ff0000;
  border-radius: 50%;
  top: 20px;
  z-index: 1;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

/* Text */
.timeline-content h3 {
  color: #ff0000;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.timeline-content h4 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}

.timeline-content p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 8px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 20px;
  }
  .timeline-item.right {
    left: 0;
  }
  .timeline-item::before {
    left: 0;
  }
}


/* PROJECTS SECTION */
.projects-section {
   padding: 120px 10% 60px 10%;
  background: #0d0d0d;
  color: #fff;
}

.projects-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
}

.projects-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ff0000;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: #111;
  border: 1px solid #ff0000;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.project-card h3 {
  color: #ff0000;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.project-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 15px;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tech-icons i {
  font-size: 1.8rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.tech-icons i:hover {
  color: #ff0000;
  transform: scale(1.3);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .projects-section {
    padding: 80px 5%;
  }

  .tech-icons i {
    font-size: 1.6rem;
  }
}



.certifications-section {
  padding: 80px 10%;
  background: #0a0a0a;
  color: #fff;
}

.certifications-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 40px;
  margin-top: 0;
  position: relative;
}

.certifications-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ff0000;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.certifications-grid, .hobbies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.cert-card, .hobby-card {
  background: #111;
  border: 1px solid #ff0000;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover, .hobby-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.cert-card i, .hobby-card i {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 12px;
}

.cert-card p, .hobby-card p {
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.hobby-card ul {
  margin-top: 10px;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 20px;
}

.hobbies-section h3 {
  color: #ff0000;
  font-size: 1.8rem;
  margin-bottom: 30px;
}



.contact-section {
  padding: 100px 10%;
  background: #0a0a0a;
  color: #fff;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 60px;
  position: relative;
}

.contact-section h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ff0000;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background: #111;
  border: 1px solid #ff0000;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

.contact-card i {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 12px;
}

.contact-card h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-card p a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card p a:hover {
  color: #ff0000;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h3 {
  color: #ff0000;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ff0000;
  background: #111;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff0000;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.contact-form button {
  padding: 12px 20px;
  border-radius: 25px;
  border: 2px solid #ff0000;
  background: #111;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #ff0000;
  color: #000;
  box-shadow: 0 0 15px #ff0000;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}


.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 10%;
  border-top: 1px solid #ff0000;
}

.footer p {
  margin-bottom: 10px;
  color: #ff0000;
}

.footer-social a {
  color: #fff;
  margin: 0 15px;
  font-size: 1.3rem;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #ff0000;
  transform: scale(1.2);
}

}


.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 10%;
  border-top: 1px solid #ff0000;
}

.footer p {
  margin-bottom: 10px;
  color: #ff0000;
}

.footer-social a {
  color: #fff;
  margin: 0 15px;
  font-size: 1.3rem;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #ff0000;
  transform: scale(1.2);
}
