*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,sans-serif;
}

body{
  background:black;
  color:white;
  overflow-x:hidden;
}

/* GRID ORANGE BACKGROUND */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:
  linear-gradient(rgba(255,122,0,0.08) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,122,0,0.08) 1px, transparent 1px);

  background-size:60px 60px;
  z-index:-1;
}
/* mouse effect */
.cursor{
  position:fixed;
  width:80px;
  height:80px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,122,0,0.4), transparent 70%);
  pointer-events:none;
  transform:translate(-50%, -50%);
  z-index:9999;
  filter:blur(15px);
  transition:width 0.3s, height 0.3s;
}

/* DOT CURSOR */
.cursor-dot{
  position:fixed;
  width:8px;
  height:8px;
  background:#ff7a00;
  border-radius:50%;
  pointer-events:none;
  transform:translate(-50%, -50%);
  z-index:9999;
}

/* MAGNETIC BUTTON FEEL */
button, li, a{
  transition:transform 0.3s ease;
}

/* NAVBAR */
.navbar{
  position:fixed;
  
  width:100%; 
  height:80px;
  top:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  backdrop-filter:blur(15px);
  background:rgba(0,0,0,0.6);
  border-bottom:1px solid rgba(255,122,0,0.2);
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  width:170px;
  height:auto;
  object-fit:contain;
  transition:0.3s;
}
.logo img{
  filter:drop-shadow(0 0 8px rgba(255,122,0,0.6));
}

/* Hover effect */
.logo img:hover{
  transform:scale(1.05);
}

@media(max-width:900px){

  .logo img{
    width:140px;
  }

}

/* NAV LINKS */
.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
  transition:0.4s;
}

.nav-links li{
  cursor:pointer;
  position:relative;
}

.nav-links li::after{
  content:"";
  position:absolute;
  width:0%;
  height:2px;
  background:#ff7a00;
  left:0;
  bottom:-5px;
  transition:0.3s;
}
.nav-links li a{
  color:white;
  text-decoration:none;
}

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

/* BUTTON */
.contact-btn{
  background:#ff7a00;
  border:none;
  padding:12px 28px;
  border-radius:40px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(255,122,0,0.6);
  transition:0.3s;
}

.contact-btn:hover{
  transform:translateY(-2px);
}
.contact-btn a{
  color:#0b0f14;
  text-decoration:none;
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.hamburger span{
  width:25px;
  height:3px;
  background:white;
  border-radius:5px;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:120px 8%;
}

.hero-content{
  max-width:600px;
  animation:fadeUp 1s ease;
}


.dynamic-text{
  color:#ff7a00;
  border-right:3px solid #ff7a00;
  padding-right:5px;
  animation:blink 0.7s infinite;
}

@keyframes blink{
  50%{
    border-color:transparent;
  }
}

.tag{
  color:#ff7a00;
  font-weight:600;
  text-transform:uppercase;
}

.hero h1{
  font-size:55px;
  margin:20px 0;
  line-height:1.2;
}

.hero p{
  color:#aaa;
  margin-bottom:35px;
  line-height:1.6;
}

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

.primary-btn{
  background:#ff7a00;
  border:none;
  padding:15px 35px;
  border-radius:50px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}
.primary-btn a{
  color:#0b0f14;
  text-decoration:none;}

.primary-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 30px rgba(255,122,0,0.6);
}

.secondary-btn{
  background:transparent;
  border:2px solid #ff7a00;
  color:white;
  padding:15px 35px;
  border-radius:50px;
  cursor:pointer;
  transition:0.3s;
}

.secondary-btn:hover{
  background:#ff7a00;
}

.hero-image{
  position:relative;
}

.hero-image img{
  width:450px;
  border-radius:100%;
  position:relative;
  z-index:2;
}

/* Glow effect */
.hero-image::before{
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  background:radial-gradient(circle,#ff7a00 0%,transparent 70%);
  filter:blur(90px);
  z-index:1;
  top:-30px;
  left:-20px;
}



/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:900px){

  .hamburger{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:80px;
    right:0;
    background:#0b0f14;
    flex-direction:column;
    width:220px;
    padding:30px;
    transform:translateX(100%);
  }

  .nav-links.active{
    transform:translateX(0);
  }

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-image{
    margin-top:40px;
  }

}

/* mobile responsive */
@media(max-width:480px){
  .hero h1{
    font-size:36px;
  }

  .hero-image img{
    width:300px;
  }
  .contact-btn{
    padding:10px 10px;
  }
}

/* chat bot */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff7a00;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 0 20px #ff7a00, 0 0 40px #ffb347;
  z-index: 999;
  transition: 0.3s;
}
.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #ff7a00, 0 0 50px #ffb347;
}

/* Chatbot Container */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 320px;
  background: rgba(0,0,0,0.9);
  border-radius: 20px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 0 25px rgba(255,122,0,0.7), 0 0 50px rgba(255,183,71,0.5);
  z-index: 999;
  border: 2px solid #ff7a00;
}

/* Header */
.chatbot-header {
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  color: white;
  padding: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  text-shadow: 0 0 5px #ff7a00, 0 0 10px #ffb347;
  cursor: default;
}

/* Body */
.chatbot-body {
  height: 250px;
  padding: 15px;
  overflow-y: auto;
  font-size: 14px;
  color: white;
}

/* Messages */
.bot-msg,
.user-msg {
  margin: 8px 0;
  padding: 10px;
  border-radius: 12px;
  max-width: 80%;
  box-shadow: 0 0 10px rgba(255,122,0,0.5);
}

.bot-msg {
  background: rgba(30,30,30,0.8);
  border-left: 3px solid #ff7a00;
}

.user-msg {
  background: rgba(255,122,0,0.2);
  border-right: 3px solid #ffb347;
  color: white;
  margin-left: auto;
}

/* Footer */
.chatbot-footer {
  display: flex;
  border-top: 1px solid #ff7a00;
}

.chatbot-footer input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  background: rgba(0,0,0,0.7);
  color: white;
}

.chatbot-footer button {
  padding: 12px 16px;
  background: #ff7a00;
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 10px #ff7a00, 0 0 20px #ffb347;
  transition: 0.3s;
}

.chatbot-footer button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff7a00, 0 0 35px #ffb347;
}

/* RESPONSIVE FOR CHATBOT */
@media (max-width: 768px) {

  /* Reduce toggle size on mobile */
  .chatbot-toggle {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  /* Chatbot container full width on mobile */
  .chatbot-container {
    width: 90%;
    right: 5%;
    bottom: 80px;
  }

  /* Header & footer font adjustment */
  .chatbot-header {
    font-size: 14px;
    padding: 12px;
  }

  .chatbot-footer input {
    padding: 10px;
    font-size: 14px;
  }

  .chatbot-footer button {
    padding: 10px 12px;
    font-size: 14px;
  }

  /* Body height reduce on mobile */
  .chatbot-body {
    height: 200px;
    font-size: 13px;
  }

  /* Message max width adjust */
  .bot-msg,
  .user-msg {
    max-width: 85%;
  }
}

@media (max-width: 480px) {

  .chatbot-toggle {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .chatbot-container {
    width: 95%;
    right: 2.5%;
    bottom: 60px;
  }

  .chatbot-body {
    height: 180px;
    font-size: 12px;
  }

  .bot-msg,
  .user-msg {
    max-width: 90%;
  }

  .chatbot-footer input {
    padding: 8px;
    font-size: 12px;
  }

  .chatbot-footer button {
    padding: 8px 10px;
    font-size: 12px;
  }
}



/* about */
.about {
  padding: 120px 8%;
  color: white;
  position: relative;
  z-index: 1;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.about-heading{
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid #ff7a00;
    margin-bottom: 40px;
}

/* Profile Image */
.about-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 4px solid #ff7a00;
  padding: 4px;
  object-fit: cover;
  box-shadow: 0 0 20px #ff7a00, 0 0 40px #ffb347;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff7a00, 0 0 60px #ffb347;
}

/* Info Section */
.about-info {
  max-width: 650px;
}

.about-info h2 {
  font-size: 36px;
  font-weight: 700;
   background: linear-gradient(90deg,#ffffff,#fffbf4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.about-info .roles {
  font-size: 16px;
  font-weight: 600;
  color: #ff7a00;
  margin-bottom: 10px;
}

.about-info .roles span {
  text-transform: uppercase;
}

.about-info .location {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

/* Contact Info */
.contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.contact-info a {
  font-size: 14px;
  color: #ff7a00;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.contact-info a:hover {
  border-bottom: 1px solid #ffb347;
  color: #ffb347;
}

/* About Description */
.about-desc {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 20px;
}

.about-buttons .primary-btn,
.about-buttons .secondary-btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.about-buttons .primary-btn {
  background: #ff7a00;
  border: none;
  color: white;
  box-shadow: 0 0 15px #ff7a00, 0 0 30px #ffb347;
}
.about-buttons .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px #ff7a00, 0 0 50px #ffb347;
}

.about-buttons .secondary-btn {
  background: transparent;
  border: 2px solid #ff7a00;
  color: white;
}
.about-buttons .secondary-btn:hover {
  background: #ff7a00;
  color: white;
}
/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .about-image img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }
}


/* skills */
.skills {
  padding: 100px 8%;
  background: black;
  color: white;
}

.skills-heading {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
   background: linear-gradient(90deg,#ffffff,#fffbf4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px #ff7a00, 0 0 20px #ffb347;
}

/* Grid layout */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Skill card */
.skill-card {
  background: rgba(255,122,0,0.05);
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: 20px;
  padding: 25px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(255,122,0,0.1);
  position: relative;
}

.skill-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px #ff7a00, 0 0 45px #ffb347;
}

/* Skill Header */
.skill-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.skill-header img {
  width: 32px;
  filter: drop-shadow(0 0 5px #ff7a00);
}

/* Skill Bar */
.skill-bar {
  width: 100%;
  height: 12px;
  background: rgba(255,122,0,0.15);
  border-radius: 50px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  border-radius: 50px;
  box-shadow: 0 0 8px #ff7a00, 0 0 15px #ffb347;
  transition: width 1.8s ease-in-out;
  position: relative;
}

/* Neon glow trailing dots effect */
.skill-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  width: 12px;
  height: 12px;
  background: #ff7a00;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff7a00, 0 0 15px #ffb347;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity:0.4; }
  100% { transform: scale(1.2); opacity:1; }
}

/* Percentage text */
.skill-percent {
  position: absolute;
  right: 20px;
  top: 28px;
  font-weight: 600;
  color: #ff7a00;
  text-shadow: 0 0 5px #ff7a00, 0 0 10px #ffb347;
}

/* Responsive */
@media(max-width:900px){
  .skills {
    padding: 60px 5%;
  }

  .skills-heading {
    font-size: 28px;
  }
}


/* projects */
.projects {
  padding: 100px 8%;
  color: white;
}

.projects-heading {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
   background: linear-gradient(90deg,#ffffff,#fffbf4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px #ff7a00, 0 0 20px #ffb347;
}

/* Filter Buttons */
.projects-filter {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #ff7a00;
  color: #ff7a00;
  padding: 10px 20px;
  margin: 0 8px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ff7a00;
  color: #0b0f14;
  box-shadow: 0 0 15px #ff7a00, 0 0 25px #ffb347;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Project Card */
.project-card {
  background-color: black;
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255,122,0,0.1);
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px #ff7a00, 0 0 40px #ffb347;
}

/* Project Image */
.project-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.1) rotate(1deg);
}

/* Project Content */
.project-content {
  padding: 20px;
}

.project-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fffefd;
  
}

.project-content p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Project Tags */
.project-tags span {
  display: inline-block;
  margin: 4px 6px 0 0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #ff7a00;
  background: rgba(255,122,0,0.1);
  box-shadow: 0 0 5px #ff7a00, 0 0 10px #ffb347;
}

/* Project Button */
.project-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  border-radius: 50px;
  background: #ff7a00;
  color: #0b0f14;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 15px #ff7a00, 0 0 25px #ffb347;
  transition: all 0.3s ease;
}

.project-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px #ff7a00, 0 0 40px #ffb347;
}

/* Responsive */
@media(max-width:900px){
  .projects {
    padding: 60px 5%;
  }
}


/* experienxe */
.experience-stats{
  padding:100px 8%;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:50px;
  color:white;
  flex-wrap:wrap;
}

.container{
  display:flex;
  gap:50px;
  width:100%;
  flex-wrap:wrap;
}

/* LEFT SIDE: Counters */
.stats{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.stat{
  font-family:Poppins, sans-serif;
  text-align:center;
}

.stat span.counter{
  font-size:50px;
  font-weight:700;
  background: linear-gradient(90deg,#ff7a00,#ffb347);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  display:block;
}

.stat p{
  font-size:18px;
  font-weight:500;
  margin-top:5px;
  color:white;
}

/* RIGHT SIDE: Timeline */
.timeline{
  flex:2;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.timeline-item{
  background: rgba(255,122,0,0.05);
  border-left:3px solid white;
  padding:20px 25px;
  border-radius:10px;
  position:relative;
  transition:0.4s;
}

.timeline-item::before{
  content:"";
  position:absolute;
  left:-12px;
  top:20px;
  width:20px;
  height:20px;
  background:#ff7a00;
  border-radius:50%;
  box-shadow:0 0 15px #ff7a00,0 0 30px #ffb347;
}

.timeline-item h3{
  margin:0;
  font-size:22px;
  font-weight:700;
  background: linear-gradient(90deg,#ff7a00,#ffb347);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.timeline-item span{
  font-size:14px;
  color:#ffb347;
}

.timeline-item p{
  margin-top:10px;
  font-size:16px;
  line-height:1.5;
  color:#ccc;
}

/* Hover Glow Effect */
.timeline-item:hover{
  background: rgba(255,122,0,0.15);
  transform: translateX(5px);
  box-shadow: 0 0 20px #ff7a00,0 0 40px #ffb347;
}

/* RESPONSIVE */
@media(max-width:900px){
  .container{
    flex-direction:column;
  }

  .stats{
    flex-direction:row;
    justify-content:space-around;
  }

  .stat span.counter{
    font-size:40px;
  }
}


/* services */
.services{
  padding: 120px 8%;
  color: white;
  position: relative;
}

.section-heading{
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg,#ffffff,#fffbf4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-align:center;
  margin-bottom:10px;
  text-shadow: 0 0 10px #ff7a00, 0 0 20px #ffb347;
}

.section-subtitle{
  text-align:center;
  color:#aaa;
  margin-bottom:60px;
  font-size:18px;
}

/* Horizontal grid */
.services-grid{
  display:flex;
  justify-content: center;
  gap:40px;
  flex-wrap: wrap;
}

.service-card{
  background: rgb(3, 3, 3);
  border:1px solid rgba(255,122,0,0.2);
  border-radius:20px;
  padding:30px 20px;
  text-align:center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor:pointer;
  flex: 1 1 300px; /* Grow/shrink responsive */
  max-width: 320px;
}

.service-card:hover{
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255,122,0,0.6);
  border-color: #ff7a00;
}

.service-card .service-icon{
  width:80px;
  height:80px;
  margin:0 auto 20px;
  background: rgba(255,122,0,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon{
  background: #ff7a00;
  box-shadow: 0 0 15px #ff7a00, 0 0 25px #ffb347;
}

.service-card h3{
  font-size:22px;
  margin-bottom:15px;
  color:white;
}

.service-card p{
  font-size:15px;
  color:#ccc;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:900px){
  .services-grid{
    flex-direction: column;
    gap:40px;
  }
}




/* GET IN TOUCH SECTION */
.get-in-touch {
  padding: 100px 8%;
  background: black;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.contact-heading {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
}

.contact-heading::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #ff7a00;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.contact-text {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Social Icons */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 15px #ff7a00;
  transition: 0.3s;
}

.contact-icon img {
  width: 28px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.contact-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px #ff7a00, 0 0 40px #ffb347;
}

.contact-icon:hover img {
  filter: brightness(1) invert(0);
}

/* Contact Button */
.contact-btn-main {
  display: inline-block;
  background: #ff7a00;
  color: white;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255,122,0,0.7);
  transition: 0.3s;
  text-decoration: none;
}

.contact-btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255,122,0,0.9);
}



@keyframes glowMove {
  0% { background-position: 0% 0%, 100% 100%; }
  50% { background-position: 50% 50%, 50% 50%; }
  100% { background-position: 0% 100%, 100% 0%; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-heading {
    font-size: 36px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-links {
    gap: 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon img {
    width: 22px;
  }

  .contact-btn-main {
    padding: 12px 30px;
    font-size: 16px;
  }
}





/* footer */
.footer{
  color: white;
  padding: 60px 8% 30px;
  border-top: 1px solid rgba(255,122,0,0.2);
  position: relative;
  overflow: hidden;
}

.footer-container{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left side */
.footer-left{
  flex:1 1 300px;
}

.footer-logo img{
  width: 150px;
  margin-bottom: 15px;
}

.footer-left p{
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons{
  display:flex;
  gap:15px;
}

.social-icons a img{
  width:30px;
  filter: drop-shadow(0 0 5px #ff7a00) drop-shadow(0 0 10px #ffb347);
  transition: transform 0.3s, filter 0.3s;
}

.social-icons a:hover img{
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #ff7a00) drop-shadow(0 0 20px #ffb347);
}

/* Center Links */
.footer-center{
  flex:1 1 200px;
}

.footer-center h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ff7a00;
  text-shadow: 0 0 5px #ff7a00, 0 0 10px #ffb347;
}

.footer-center ul{
  list-style:none;
  padding:0;
}

.footer-center ul li{
  margin-bottom:10px;
}

.footer-center ul li a{
  color:#ccc;
  text-decoration:none;
  transition: 0.3s;
}

.footer-center ul li a:hover{
  color:#ff7a00;
  text-shadow: 0 0 5px #ff7a00, 0 0 10px #ffb347;
}

/* Right Side Contact */
.footer-right{
  flex:1 1 200px;
}

.footer-right h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ff7a00;
  text-shadow: 0 0 5px #ff7a00, 0 0 10px #ffb347;
}

.footer-right p{
  color:#ccc;
  margin-bottom:8px;
  font-size:14px;
}

/* Footer Bottom */
.footer-bottom{
  text-align:center;
  margin-top:40px;
  color:#555;
  font-size:14px;
}

/* Responsive */
@media(max-width:900px){
  .footer-container{
    flex-direction: column;
    gap:30px;
  }

  .footer-left,
  .footer-center,
  .footer-right{
    text-align:center;
  }
}
