@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
@font-face {
  font-family: myfont;
  src: url(myfont.ttf);
}

body{
  font-family: var(--primary-font-family);
  font-optical-sizing: auto;  
  font-family: "myfont"; 
  
  /* overflow-x: hidden;  */
  

}
:root{
    --primary-font-family : "Inter", sans-serif;
}
a{
    text-decoration: none;
    color: inherit;
}

#main{
    width: 100%;
    height: 100vh;
  
  }
  #aboputpage1{
    position: relative;
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
  }

  #aboputpage1 .vediocover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
  }
  #page1_content{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.321);
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  
  
  }
  #page1_content nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
 
    z-index: 3;
  }
  .hero_text {
    display: flex;
    flex-direction: column;
    
  }
  .hero_text h1{
    font-size: 6.5vw;
    font-weight: 900;
    line-height: 1.2;
    text-align: start;
    font-family: "myfont", sans-serif;
    position: relative;
    color: #fff;
    
    
  }
  .hero_text span{
    color: #FF5F38;
  }
.about_sec_flexbox{
    display: flex;
    align-items: center;
    justify-content: space-between;

}

  nav h3{
    font-size: 1.4vw;
    font-family: "myfont";
    font-style: normal;
    font-weight: 300;
    cursor: pointer;
  }
  nav h4{
    font-size: 1.4vw;
    font-family: "myfont";
    font-style: normal;
    font-weight: 300;
    cursor: pointer;
  }
  
 /* text hero section animation */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 4rem;
}


.our-story {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  margin-top: 20px;
  align-self: flex-start;
}

.dash-line {
  color: #FF5F38;
  letter-spacing: -5px;
}

/* Main Text Group */
.text-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem; 
  box-sizing: border-box;
}

/* Left-Aligned Main Text */
.main-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 10%;
}

.text-box h1 {
  font-size: clamp(2.5rem, 8vw,5rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Bottom Right ABOUT Text */
.about-text {
  margin-top: auto;
  align-self: flex-end;
  margin-bottom: 5%;
}

.about-text h1 {
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

/* Hover Animation */
.text-box:hover h1 {
  transform: translateY(-5px);
  color: #FF5F38;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #page1_content {
    padding: 2rem;
  }
  
  .main-text {
    margin-top: 15%;
  }
  
  .about-text {
    margin-bottom: 10%;
  }
}

@media (max-width: 480px) {
  #page1_content {
    padding: 1.5rem;
  }
  
  .text-box h1 {
    font-size: clamp(2rem, 8vw, 4rem);
  }
  
  .about-text h1 {
    font-size: clamp(1.5rem, 4vw, 3rem);
  }
}
  
  /* Full-page menu styles */
  #fullpage-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  #fullpage-menu.active {
    display: flex;
    opacity: 1;
  }
  
  .menu-content {
    position: relative;
    width: 80%;
    max-width: 1200px;
  }
  
  .menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .menu-content li {
    margin: 2rem 0;
  }
  
  .menu-content a {
    color: white;
    font-size: 5vw;
    font-family: "myfont";
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .menu-content a:hover {
    color: #FF5F38;
  }
  
  #close-menu {
    position: absolute;
    top: -20px;
    right: 0;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  #close-menu:hover {
    color: #FF5F38;
  }

  


/* Achievements Section Styles */
.achievements-section {
    padding: 80px 40px;
    background: #0f0f0f;
    color: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    /* font-family: 'Bebas Neue', sans-serif; */
    font-family: "myfont";
    font-size: 4rem;
    margin-bottom: 15px;
  }
  
  .highlight {
    color: #FF5F38;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .achievement-card {
    text-align: center;
  padding: 20px;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  }
  
  .achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 95, 56, 0.1);
  }
  
  .card-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #222;
  }
  
  .card-header .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 95, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card-header .icon i {
    color: #FF5F38;
    font-size: 1.2rem;
  }
  
  .card-header h3 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .card-content {
    padding: 25px;
  }
  
  .achievement-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .achievement-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .achievement-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #FF5F38;
    border-radius: 50%;
  }
  
  .stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #222;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #FF5F38;
    line-height: 1;
  }
  
  .label {
    font-size: 0.9rem;
    color: #aaa;
  }
  
  /* Category-specific accents */
  .tech .icon { background: rgba(56, 182, 255, 0.1); }
  .tech .icon i { color: #38b6ff; }
  .tech .achievement-list li::before { background: #38b6ff; }
  .tech .number { color: #38b6ff; }
  
  .digital .icon { background: rgba(255, 56, 149, 0.1); }
  .digital .icon i { color: #ff3895; }
  .digital .achievement-list li::before { background: #ff3895; }
  .digital .number { color: #ff3895; }
  
  .wedding .icon { background: rgba(255, 215, 0, 0.1); }
  .wedding .icon i { color: #ffd700; }
  .wedding .achievement-list li::before { background: #ffd700; }
  .wedding .number { color: #ffd700; }
  
  .printing .icon { background: rgba(0, 255, 170, 0.1); }
  .printing .icon i { color: #00ffaa; }
  .printing .achievement-list li::before { background: #00ffaa; }
  .printing .number { color: #00ffaa; }
  
  .design .icon { background: rgba(170, 0, 255, 0.1); }
  .design .icon i { color: #aa00ff; }
  .design .achievement-list li::before { background: #aa00ff; }
  .design .number { color: #aa00ff; }



/* Achievements Section - Zero Gravity Style */
.achievements-section2{
  background: #0f0f0f;
  padding: 80px 0;
  color: white;
}

.achievements-section2 h2 {
  font-family: "myfont", sans-serif; /* Match your brand font */
  font-size: 3.5rem;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
  padding-bottom: 1rem;
}


.achievements-section2 h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #FF5F38; /* Your orange brand color */
  border-radius: 3px;
}
.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  font-family: "myfont";
  margin-top: 2rem;
}

.achievement-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.achievement-card {
  text-align: center;
  padding: 20px;
  
}

.achievement-number {
  
  font-size: 4.5rem;
  color: #FF5F38;
  line-height: 1;
  margin-bottom: 10px;
  padding: 20px;
}

.achievement-label {
 
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.achievement-content{
  text-align: start;
}

.achievement-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  
}

.achievement-content p {
  
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  font-family: "myfont", sans-serif;
  font-size: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 5px;
  border-bottom: 2px solid #FF5F38;
  transition: all 0.3s ease;
}

.cta-button:hover {
  color: #FF5F38;
  gap: 15px;
}





/* bubble animation */
.achievement-number {
  transition: all 0.3s ease-out;
  position: relative;
}

.animate-pulse {
  animation: zero-gravity-pulse 0.8s ease-out;
}

@keyframes zero-gravity-pulse {
  0% { transform: scale(1); text-shadow: 0 0 0 rgba(255, 95, 56, 0); }
  50% { transform: scale(1.1); text-shadow: 0 0 15px rgba(255, 95, 56, 0.7); }
  100% { transform: scale(1); text-shadow: 0 0 0 rgba(255, 95, 56, 0); }
}

@keyframes orbit {
  0% {
    transform: 
      translate(0, 0) 
      rotate(0deg) 
      translate(30px) 
      rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: 
      translate(0, 0) 
      rotate(360deg) 
      translate(30px) 
      rotate(-360deg);
    opacity: 0;
  }
}

.orbit-particle {
  will-change: transform;
}





/* Collaborations Section */
.collaborations-section {
  padding: 8rem 2rem;
  background: #121212;
  color: white;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h5 {
  color: #FF5F38;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight {
  color: #FF5F38;
}

.section-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
}

/* Collaboration Grid */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.collab-card {
  background: #1E1E1E;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 95, 56, 0.1);
  border-color: #FF5F38;
}

.collab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #333;
}

.logo-container img {
  max-height: 50px;
  max-width: 120px;
  border-radius: 10px;

}

.collab-card:hover .logo-container img {
  filter: none;
}

.years-badge {
  background: #FF5F38;
  color: black;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.collab-content {
  padding: 2rem;
}

.collab-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.collab-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.collab-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.collab-stats li {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF5F38;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collab-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #333;
}

.case-study-link {
  color: #FF5F38;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.case-study-link:hover {
  color: white;
}

.view-all {
  text-align: center;
  margin-top: 4rem;
}

.view-all-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: #FF5F38;
  border: 2px solid #FF5F38;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #FF5F38;
  color: black;
}



/* Timeline Section */
.timeline-section {
  padding: 100px 40px;
  background: #121212;
  color: white;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.highlight {
  color: #FF5F38;
}

.section-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 100px;
}

.timeline-line {
  position: absolute;
  left: 85px;
  top: 0;
  height: 100%;
  width: 4px;
  background: rgba(255, 95, 56, 0.2);
  z-index: 1;
}

/* Animated Progress Circle */
.timeline-progress-circle {
  position: absolute;
  left: 75px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FF5F38;
  border: 4px solid #121212;
  z-index: 10;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 0 0 4px rgba(255, 95, 56, 0.4);
}

/* Timeline Items with spacing */
.timeline-item {
  position: relative;
  margin-bottom: 120px; /* Increased spacing */
  padding-bottom: 40px;
  opacity: 0.4;
  transition: opacity 0.5s ease;
  z-index: 3;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item.active {
  opacity: 1;
}

.timeline-year {
  position: absolute;
  left: -100px;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FF5F38;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 4;
  transition: all 0.3s ease;
}

.timeline-content {
  background: #1E1E1E;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #1E1E1E;
  z-index: 1;
}

.timeline-content::after {
  content: '';
  position: absolute;
  left: -12px;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #333;
  z-index: 0;
}

.timeline-item:hover .timeline-content {
  border-color: #FF5F38;
  transform: translateX(10px);
}

.timeline-item:hover .timeline-year {
  transform: scale(1.1);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
}

.timeline-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}


/* Footer Section */
footer {
  background: #000000;
  width: 100%;
  font-family: "myfont";
  overflow: hidden; /* Prevent any overflow */
}

.footer_header {
  width: 100%;
  min-height: 55dvh;
  color: #FFFFFF;
  padding: 30px 20px 0;
  box-sizing: border-box;
}

/* Responsive main heading */
.footer_header .gravity {
  text-align: center;
  font-weight: 400;
  font-size: clamp(4rem, 15vw, 200px); /* Responsive scaling */
  line-height: 0.9;
  margin-bottom: 1rem;
}

/* Side text elements */
.footer_header .zero,
.footer_header .group {
  font-size: clamp(1.5rem, 3vw, 60px);
  margin: 0 1rem 0 0;
 
}

/* Navigation links container */
.navigatelinks {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: space-between;
  color: #FFFFFF;
  min-height: 45dvh;
  padding: 20px;
  box-sizing: border-box;
  gap: 20px; /* Consistent spacing */
}

/* All link columns */
.websites,
.social_media,
.contact,
.visit {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  min-width: 150px; /* Minimum width before wrapping */
  flex: 1; /* Allow equal growth */
}

/* Column headings */
.websites h2,
.social_media h2,
.contact h2,
.visit h2 {
  padding-bottom: 5px;
  font-size: clamp(1rem, 1.2vw, 20px);
  white-space: nowrap;
}
.fa-brands{
  padding: 0 5px;
}

/* All links */
.websites a,
.social_media a,
.contact a,
.visit a {
  cursor: pointer;
  padding: 4px 0;
  font-size: clamp(0.9rem, 1.1vw, 18px);
  display: block;
}
  .wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }
  #svg {
    /* position: fixed; */
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
  
  }
  .contact-item{
    display: flex;
    justify-content: start;
    align-items: center;
  }
  

 /* Scroll to Top Button */
 .scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 5s ease;
}

.scroll-circle:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.9);
}

.rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 20s linear infinite;
}


@keyframes rotateText {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.arrow-icon {
  position: relative;
  z-index: 2;
  transform: rotate(-90deg);
  width: 24px;
  height: 24px;
}


    /* Responsive Design for tablet */
@media (max-width: 1024px) {
  #page1_content {
    padding: 1.5rem;
  }

  nav h3,
  nav h4 {
    font-size: 1.8rem;
  }

  .hero_text h1 {
    font-size: 7vw;
    text-align: center;
  }

  .about_sec_flexbox {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  nav {
    flex-direction: row;
    gap: 0.5rem;
    margin-right: 0;
  }

  .achievements-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .achievement-content {
    grid-column: span 2;
    text-align: center;
  }

  .achievement-content h2 {
    font-size: 1.8rem;
  }

  .achievement-content p {
    font-size: 1rem;
  }
  .our-story {
    align-self: center;
    
  }
  .main-text {
    margin-top: 15%;
    align-self: center;
 
  }
  .text-box h1{
    align-self: center;
    font-size: 1.5rem;
  }
  
  .about-text {
    align-self: center;
    padding-top: 30px;
  }
  /* grid numbers */
  .achievements-section2 {
    padding: 60px 20px;
  }

  .achievements-section2 h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .achievements-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .achievement-number {
    font-size: 3.5rem;
    padding: 15px;
  }

  .achievement-content h2 {
    font-size: 1.6rem;
  }

  .achievement-content p {
    font-size: 16px;
  }
  .collaborations-section {
    padding: 6rem 1.5rem;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

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

  .collab-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .logo-container img {
    max-width: 100px;
  }

  .collab-content h3 {
    font-size: 1.3rem;
  }

  .collab-content p {
    font-size: 1rem;
  }

  .collab-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .view-all-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
  /* timeline */
  .timeline-section {
    padding: 80px 30px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .timeline-container {
    padding-left: 60px;
  }

  .timeline-line {
    left: 50px;
  }

  .timeline-progress-circle {
    left: 40px;
  }

  .timeline-year {
    left: -70px;
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .timeline-content {
    padding: 25px;
  }

  .timeline-content::before,
  .timeline-content::after {
    left: -8px;
    top: 25px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right-width: 8px;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
  }

  .timeline-content p {
    font-size: 1rem;
  }
}



 /* Responsive Design for mobile */
 @media (max-width: 768px) {
  #main,
  #aboputpage1 {
    height: auto;
    overflow-x: hidden;
  }

  #page1_content {
    padding: 1rem;
  }

  .hero_text h1 {
    font-size: 8vw;
    text-align: center;
  }

  nav h3,
  nav h4 {
    font-size: 1.4rem;
  }

  .about_sec_flexbox {
    flex-direction: row;
    gap: 1rem;
  }
  .section-header h2 {
    font-size: 2.5rem;
  }
  .our-story {
    align-self: center;
    
  }
  .main-text {
    margin-top: 15%;
    margin-left: 30px;
 
  }

  .text-box h1{
    align-self: center;
    font-size: 1.2rem;
  }
  
  .about-text {
    align-self: center;
    padding-top: 30px;
  }
  .about-text h1{
    font-size: 1.2rem;
  }

  /* grid numbers */
  .achievements-section2 {
    padding: 50px 15px;
  }

  .achievements-section2 h2 {
    font-size: 2rem;
    padding-bottom: 0.5rem;
  }

  .achievements-section2 h2::after {
    width: 80px;
    height: 2px;
  }

  .achievements-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 1.5rem;
    padding: 0 10px;
  }

  .achievement-number {
    font-size: 2.5rem;
    padding: 10px;
  }

  .achievement-label {
    font-size: 1rem;
  }

  .achievement-content h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .achievement-content p {
    font-size: 15px;
   
  }

  .cta-button {
    font-size: 0.95rem;
    gap: 8px;
  }

  .cta-button:hover {
    gap: 12px;
  }
  .achievements-container {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }

  .achievement-card {
    padding: 15px;
  }
  
  /* collabration */

  .collaborations-section {
    padding: 4rem 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .section-header h5 {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .collab-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .collab-header {
    padding: 1.5rem;
  }

  .collab-content {
    padding: 1.5rem;
  }

  .collab-content h3 {
    font-size: 1.2rem;
  }

  .collab-content p {
    font-size: 0.95rem;
  }

  .collab-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .collab-footer {
    padding: 1rem 1.5rem;
  }

  .view-all {
    margin-top: 3rem;
  }

  .view-all-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  /* timeline */
  .timeline-section {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .timeline-container {
    padding-left: 40px;
  }

  .timeline-line {
    left: 30px;
    width: 3px;
  }

  .timeline-progress-circle {
    left: 20px;
    width: 30px;
    height: 30px;
    border-width: 3px;
  }
  .contact-item{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .timeline-year {
    left: -50px;
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content::before,
  .timeline-content::after {
    left: -6px;
    top: 20px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right-width: 6px;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }

  .timeline-item {
    margin-bottom: 80px;
  }
  .achievement-number {
    font-size: 2.5rem;
    padding: 10px 0;
  }

  .orbit-particle {
    width: 6px;
    height: 6px;
    transform: scale(0.8);
  }
  /* footer */
  .footer_header {
    text-align: center;
    padding: 20px 10px;
    min-height: unset;
  }

  .footer_header .gravity {
    font-size: clamp(2rem, 8vw, 70px); /* Smaller for mobile */
  }

  .footer_header .zero,
  .footer_header .group {
    font-size: clamp(1rem, 4vw, 25px);
  }

  .navigatelinks {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .websites,
  .social_media,
  .contact,
  .visit {
    flex: 1 1 100%;
    text-align: center;
    padding: 10px 0;
  }
  .fa-brands{
    padding: 0 5px;
  }
  
  
 }