*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
}

body{
  overflow-x:hidden;
}

#menuToggle{
  display:none;
}
/* =========================
   Inter
========================= */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* =========================
   DM Sans
========================= */

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* -------------------------------------------------------------------------------------------- */
/* ================= NAVBAR ================= */

.navbar{
  height:56px;
  background:#091B32;
  display:flex;
  align-items:center;
  padding:0 80px;
  position:relative;
}
.navbar{
  position:relative;
  z-index:1000;
}
/* Bottom gradient stroke */
.navbar::after{
  content:"";
  position:absolute;
  bottom:2px;
  left:0;
  width:100%;
  height:2px;
  font-family: 'Inter', sans-serif;
  background:linear-gradient(to right,  #192e4a);
}

.nav-container{
  width:100%;
  
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO */
.logo img{
  height:42px;
  width:auto;
}

/* NAV LINKS */
.nav-links{
  display:flex;
  gap:48px;
  list-style:none;
}

.nav-links li a{
  text-decoration:none;
  color:#F7F8F9;
  font-size:16px;
  font-weight:500;
  position:relative;
  transition:0.3s;
  font-family: 'Inter', sans-serif;
}

/* Yellow active */
.nav-links li a:hover{
  color:#F3A804;
}

/* underline animation */
.nav-links li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#F3A804;
  transition:0.3s ease;
}

.nav-links li a:hover::after{
  width:100%;
}

/* ================= HAMBURGER ICON ================= */

.menu-icon{
  width: 36px;
  height:36px;
  border-radius:50%;
  background:#ffffff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  transition:0.3s;
  font-family: 'Inter', sans-serif;
 
}

.menu-icon span{
  width:16px;
  height:2px;
  background:#091B32;
  font-family: 'Inter', sans-serif;

  margin:3px 0;
  transition:0.5s ease;
}

/* Transform to X when checked */
#menuToggle:checked + .navbar .menu-icon{
  background:#091B32;
}

#menuToggle:checked + .navbar .menu-icon span:nth-child(1){
  transform:translateY(5px) rotate(45deg);
  background:#F7F8F9;
}

#menuToggle:checked + .navbar .menu-icon span:nth-child(2){
  opacity:0;
}

#menuToggle:checked + .navbar .menu-icon span:nth-child(3){
  transform:translateY(-5px) rotate(-45deg);
  background:#091B32;
}

/* ================= QUICK PANEL ================= */

.quick-panel{
  position:fixed;
  top:0;
  right:-320px;
  width: 300px;
  height:100vh;
  padding:80px 40px;
  transition:0.3s ease;
  z-index:999;
  font-family: 'Inter', sans-serif;

  /* Background pattern */
  background:
    url("../assests/icons.png/QC\ BG.png") center/cover no-repeat,
    #F4F5F7;
  box-shadow:-10px 0 40px rgba(0,0,0,0.08);
}

/* Open panel */
#menuToggle:checked ~ .quick-panel{
  right:0;
}

/* Back Arrow */
.back-arrow{
  position:absolute;
  top:40px;
  left:40px;

  width:42px;              /* equal width & height */
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;
  color:#ffffff;

  background:#091B32;      /* solid circle */
  border-radius:50%;

  cursor:pointer;
  transition:0.3s ease;
}
.back-arrow:hover{
  background:#F7F8F9;
  border: 2px solid #091b32;
  color:#091B32;
}

/* ================= QUICK LINKS ================= */
.quick-content{
  margin-top:40px;
}
.quick-content ul{
  list-style:none;
  padding:0;
}

.quick-content li{
  margin-bottom:40px;
  font-family: 'Inter', sans-serif;
}

.quick-content li a{
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  color:#071C34;
  position:relative;
  display:inline-block;
  font-family: 'Inter', sans-serif;
}

/* Line animation */
.quick-content li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:3px;
  background:#071C34;
  transition:0.4s ease;
}

.quick-content li a:hover::after{
  width:100%;
}
/* ------------------------------------------------------------------------------ */

/* ================= HERO SECTION ================= */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  color:#ffffff;
}

/* VIDEO */
.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

/* DARK OVERLAY */
.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    to bottom,
    rgba(7,28,52,0.85),
    rgba(7,28,52,0.95)
  );
  z-index:-1;
}

/* CONTENT */
.hero-content{
  max-width:1400px;
  padding:0 40px;
}

/* MAIN TITLE */
.hero-content h1{
  font-size:56px;
  font-weight:700;
  margin-bottom:0px;
  letter-spacing:1.6px;
 font-family: 'DM Sans', sans-serif;
}

/* YELLOW QUOTE */
.hero-quote{
  color:#F3A804;
  font-size:20px;
  line-height:1.3;
  margin-bottom:40px;
 font-family: 'DM Sans', sans-serif;
}


/* BUTTONS */
.hero-buttons{
  display:flex;
  justify-content:center;
  gap:40px;
}

/* BOOK A DEMO BUTTON */
.btn-demo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 24px;
  background:#1E77BC;
  color:#ffffff;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:0.3s;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}

/* HOVER: WHITE BG, BLUE TEXT */
.btn-demo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 24px;
  background:#1E77BC;
  color:#ffffff;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:0.3s;
  font-family: 'DM Sans', sans-serif;
}

/* Hover: white bg, blue text + icon */
.btn-demo:hover{
  background:#ffffff;
  color:#1E77BC;
}

/* icon smooth transition */
.demo-icon{
  transition:0.3s;
}
/* LEARN MORE BUTTON */
.btn-learn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 24px;
  border:2px solid #1E77BC;
  color:#ffffff;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
  transition:0.3s ease;
  font-family: 'DM Sans', sans-serif;
}

/* Hover state */
.btn-learn:hover{
  background:#ffffff;
  color:#1E77BC;
}

/* Icon smooth transition */
.learn-icon{
  transition:0.3s ease;
}
/* ------------------------------------------------------------------------------------------------------------------------------- */
/* <!-- Pramey Section --> */
/* ================= SECTION ================= */

.pramey-section {
  width: 100%;
  background: #132338;
  padding-top: 60px;
  padding-bottom: 40px;
  color: white;
}

/* ================= HEADER ================= */

.pramey-header {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 28px auto;
  padding: 0 20px;
  
}

.pramey-header h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.script {
  font-family: 'DM Sans', sans-serif;
  color: #1E77BC;
  margin-right: 10px;
  font-family: 'DM Sans', sans-serif;
}

.sub-text,
.tag-text {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

/* ================= 50 / 50 GRID ================= */

.pramey-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;

 
}


/* ================= LEFT SIDE DEVICE SCROLL ================= */

.left-side {
  padding-left: 40px;
  padding-right: 60px;
}

/* Fixed frame */
.device-frame {
  height: 520px;              /* visible height */
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

/* Moving content */
.device-scroll {
  display: flex;
  flex-direction: column;
  animation: scrollInside 20s linear infinite;
}

.device-scroll img {
  width: 100%;
  display: block;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* Smooth infinite animation */
@keyframes scrollInside {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* RIGHT TEXT */

.right-side {
  padding-right: 40px;   /* spacing from right edge */
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
   margin-top: 40px;
   font-family: 'DM Sans', sans-serif;
}

.right-side p {
  margin-bottom: 24px;
}

.highlight-line {
  color: #F3A804;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}
/* <!-- ------------------------------------------------------------------------------------------------------------------------------ --> */

/* Discover why leading enterprises choose Pramey to power their growth. */
/* ================= SECTION ================= */

.discover-section {
  background: #0f2b45;
  padding: 120px 60px;
  color: #ffffff;
}

.discover-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADER */

.discover-header {
  text-align: center;
  margin-bottom: 80px;
}

.discover-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #F3A804;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.discover-header span {
  color: #1E77BC;
  font-family: 'DM Sans', sans-serif;
}

.discover-header p {
  font-size: 18px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
}

/* GRID */

.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */

.discover-card {
  position: relative;
  background: #ffffff;
  color: #132338;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;

  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(.22,1,.36,1);
}
.discover-card:hover{
  background:#F3A804;
 
}

.discover-card:hover h3,
.discover-card:hover p,
.discover-card:hover h3 span{
  color:#ffffff;

  
}
/* Scroll reveal active */
.discover-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Animated border using pseudo element */

.discover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;

  background: linear-gradient(
    90deg,
    #1E77BC,
    #091B32,
    #1E77BC,
    #091B32
  );

  background-size: 200% 200%;
  animation: borderRun 4s linear infinite;

  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderRun {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ICON */

.icon-circle {
  width: 36px;
  height: 36px;
  background: #1E77BC;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 36px;
}

/* TEXT */

.discover-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.discover-card p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .discover-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .discover-grid {
    grid-template-columns: 1fr;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------- */
/* <!-- Pramey – The Foundation for Agentic Enterprise Transformation --> */
/* ===== MAIN DARK SECTION ===== */

.foundation-main {
  background: #091B32;
  padding: 80px 60px 80px 60px;
}

.foundation-top {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 80px auto;
}

.foundation-top h1 {
  font-size: 40px;
  font-weight: 600;
  color: #f3a804;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.foundation-top p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
   
}

/* ===== LIGHT WRAPPER ===== */

.foundation-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border-top:4px solid #F3A804;
  margin-top: 40px;
}

/* ===== INNER CONTAINER ===== */

.foundation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;

}

/* ===== LEFT ===== */

.foundation-left {
  flex: 1;
}

.foundation-left h2 {
  font-size: 28px;
  color: #1E77BC;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.foundation-subtext {
  font-size: 16px;
  margin-bottom: 20px;
  color: #3C4048;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* ===== FEATURE BOX ===== */

.foundation-box {
  background: transparent;
  border-top: 2px solid #091B32;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(.22,1,.36,1);
}

.foundation-box.show {
  opacity: 1;
  transform: translateY(0);
}

.foundation-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.foundation-title img {
  width: 24px;
  height: 24px;
}

.foundation-title h3 {
  font-size: 18px;
  color: #f3a804;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}

.foundation-box p {
  font-size: 14px;
  color: #3C4048;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* ===== RIGHT IMAGE ===== */

.foundation-right {
  flex: 1;
  text-align: center;
}

.foundation-right img {
  max-width: 100%;
  height: auto;
}


/* ------------------------------------------------------------------------------------------------------------------------------- */
/* Pramey’s  Agentic AI Architecture */
.architecture-section{
background:#132338;
padding:60px 6%;
 font-family: 'DM Sans', sans-serif;
color:white;
}


/* HEADER */

.architecture-header{
text-align:center;
max-width:  1400px;
margin:auto;
margin-bottom:40px;
}

.architecture-header h2{
font-size:40px;
margin-bottom:20px;
font-family: 'DM Sans', sans-serif;
}

.script{
color:#f3a804;

font-family: 'DM Sans', sans-serif;
}

.title{
color:#F3A804;
font-family: 'DM Sans', sans-serif;
}

.architecture-header p{
color:#ffffff;
line-height:1.6;
font-family: 'DM Sans', sans-serif;
}


/* TWO COLUMN */

.architecture-wrapper{
display:grid;
grid-template-columns: 1fr 1fr;
gap:60px;
align-items:start;
}


/* LEFT IMAGE */

.architecture-left img{
width:100%;

}


/* RIGHT PNG IMAGES */

.architecture-right{
display:flex;
flex-direction:column;
gap:40px;

height:950px;
overflow-y:auto;

padding-right:10px;

scrollbar-width:none; /* Firefox */
}

.architecture-right::-webkit-scrollbar{
display:none; /* Chrome, Edge, Safari */
}
Result
.content-img{
width:100%;
border-radius:16px;
}
.architecture-right::-webkit-scrollbar{
width:6px;
}

.architecture-right::-webkit-scrollbar-thumb{
background:#1E77BC;
border-radius:10px;
}
/* ------------------------------------------------------------------------------------------------------------------------------- */
/* Pramey’s  Agentic AI Platform Overview */
.platform-section{
background:#0f2742;
padding:40px 6%;
font-family: 'DM Sans', sans-serif;
color:white;
}

.title{
max-width: 1400px;
text-align:center;
color:#f3a804;
font-size:40px;
margin-bottom:20px;
font-family: 'DM Sans', sans-serif;
}
.para{
  max-width: 1400px;
text-align:center;
color:#ffffff;
font-size:20px;
margin-bottom:60px;
font-family: 'DM Sans', sans-serif;
}

/* GRID LAYOUT */

.platform-wrapper{
display:grid;
grid-template-columns:0% 100%;
gap:0px;
align-items:center;
}

/* RIGHT */

.frame{
width:100%;
height:520px;
overflow:hidden;

}


/* SCROLL */

.scroll-track{
display:flex;
gap:40px;
width:max-content;
animation:scroll 45s linear infinite;
}

.scroll-track img{
height:520px;
border-radius:12px;
}


/* ANIMATION */

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-10%);
}

}
/* ------------------------------------------------------------------------------------------------------------------------------- */

/* Contact Us */
/* ============================= */
/* SECTION BACKGROUND            */
/* ============================= */

.cta-section {
  position: relative;
  width: 100vw;              /* Full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;        /* Break out of parent */
  margin-right: -50vw;

  padding: 100px 20px;
  background: #091B32;

  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* ============================= */
/* INNER GRADIENT CARD           */
/* ============================= */

.cta-container {
  width: 90%;
  max-width: 1600px;
  padding: 40px 40px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(180deg, #1E77BC 0%,#1E77BC , #091B32 100%);
   font-family: 'DM Sans', sans-serif;
}

/* ============================= */
/* TEXT                          */
/* ============================= */

.cta-title {
  font-size: 40px;
  color: #F3A804;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.cta-subtitle {
  font-size: 20px;
  color: #ffffff;
  max-width: 1400px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
   font-family: 'DM Sans', sans-serif;
}

/* ============================= */
/* BUTTONS WRAPPER               */
/* ============================= */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* ============================= */
/* COMMON BUTTON STYLE           */
/* ============================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
   font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}
/* Change PNG icon color to blue on hover */
.btn-primary:hover .btn-icon {
  filter: brightness(0) saturate(100%)
          invert(32%) sepia(98%)
          saturate(2476%)
          hue-rotate(185deg)
          brightness(95%) contrast(95%);
}

/* ============================= */
/* PRIMARY BUTTON (Blue)         */
/* ============================= */

.btn-primary {
  background-color: #1E77BC;
  color: #ffffff;
  
}

/* Hover + Click */
.btn-primary:hover,
.btn-primary:active {
  background-color: #ffffff;
  color: #1E77BC;
}

/* ============================= */
/* OUTLINE BUTTON (White)        */
/* ============================= */

.btn-outline {
  
  color: #ffffff;
  border: 2px solid #1E77BC;
}

/* Hover + Click */
.btn-outline:hover,
.btn-outline:active {
  background-color: #ffffff;
  color: #1E77BC;

}

/* ============================= */
/* ICON                          */
/* ============================= */

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ------------------------------------------------------------------------------------------------------------------------------- */
/* <!-- Footer --> */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* FULL WIDTH FOOTER BACKGROUND */
.footer {
  width: 100vw;                         /* Force full viewport width */
  margin-left: calc(50% - 50vw);         /* Break out of parent */
  background: linear-gradient(180deg, #152131 0%, #091B32 100%);
  color: #ffffff;
  position: relative;
}

/* INNER CONTENT ALIGNMENT */
.footer-wrapper {
  max-width: 1440px;   /* Design width */
  margin: 0 auto;
  padding: 40px 40px;
  box-sizing: border-box;
}


/* FOOTER BACKGROUND
.footer {
  background: linear-gradient(90deg, #091B32 0%, #102B45 100%);
  color: #ffffff;
  position: relative;
  width: 100%;
} */

/* Wrapper Alignment */
.footer-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px;
}


/* Top Row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
     font-family: 'Inter', sans-serif;
}

.footer-logo {
  width: 150px; /* PNG Logo */
}

.footer-copy {
  font-size: 14px;
  opacity: 0.8;
  color:#ffffff;
     font-family: 'Inter', sans-serif;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: #323E4F;
  margin: 30px 0 50px 0;
     font-family: 'Inter', sans-serif;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  color: #F7F8F9;
     font-family: 'Inter', sans-serif;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-weight: 500;
     font-family: 'Inter', sans-serif;
}

/* Links */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
     font-family: 'Inter', sans-serif;
}

.footer-column ul li a {
  color: #F7F8F9;
  text-decoration: none;
  position: relative;
  font-size: 14px;
     font-family: 'Inter', sans-serif;
}

/* Underline animation */
.footer-column ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #F7F8F9;
  transition: width 0.3s ease;
}

.footer-column ul li a:hover::after {
  width: 100%;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* ============================= */
/* SCROLL TO TOP CIRCLE         */
/* ============================= */

.scroll-top {
  position: absolute;
  right: 60px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

/* Rotating SVG */
.rotating-text {
  width: 100%;
  height: 100%;
 
  animation: rotateText 15s linear infinite;
}

/* Rotation animation */
@keyframes rotateText {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Static Arrow Centered */
.scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
     font-family: 'Inter', sans-serif;
  color: #ffffff;
  pointer-events: none; /* ensures click works on parent */
}
/* ------------------------------------------------------------------------------------------------ */
/* =========================================
   GLOBAL RESPONSIVE SETTINGS
========================================= */

@media (max-width: 992px) {

  .hero {
    min-height: auto;
    padding: 100px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-quote {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 20px;
  }

}
@media (max-width: 992px) {

  .pramey-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    font-size: 36px;
  }

  .left-side {
    padding: 0 20px;
  }

  .right-side {
    padding: 0 20px;
    text-align: center;
  }

  .highlight-line {
    text-align: center;
  }

}
@media (max-width: 768px) {

  .discover-section {
    padding: 80px 20px;
  }

  .discover-header h2 {
    font-size: 28px;
  }

  .discover-card {
    padding: 30px 20px;
  }

}

@media (max-width:768px){
  .pramey-header h2,
  .architecture-header h2,
  .foundation-top h1,
  .discover-header h2,
  .title {
    font-size: 26px;
  }
}
@media (max-width: 992px) {

  .foundation-main {
    padding: 60px 20px;
  }

  .foundation-wrapper {
    padding: 20px;
  }

  .foundation-container {
    flex-direction: column;
    gap: 40px;
  }

  .foundation-left h2 {
    font-size: 22px;
  }

}
@media (max-width: 992px) {

  /* ===== ARCHITECTURE SECTION ===== */

.architecture-section{
  background:#132338;
  padding:80px 6%;
  color:white;
}

.architecture-wrapper{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:start;
}

/* LEFT IMAGE */
.architecture-left img{
  width:100%;
  height:auto;
  display:block;
}

/* RIGHT IMAGES STACK */
.architecture-right{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.content-img{
  width:100%;
  border-radius:8px;
}
}
@media (max-width: 992px) {

  .platform-wrapper {
    grid-template-columns: 1fr;
  }

  .frame {
    height: auto;
  }

  .scroll-track img {
    height: 300px;
  }

}
@media (max-width: 768px) {

  .cta-title {
    font-size: 26px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

}
/* ================= FOOTER FIX ================= */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}
/* Desktop */
.nav-links {
  display: flex;
  gap: 32px;
}
@media (max-width:768px){

  .reach-card {
    align-items: flex-start;
  }

  .icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

}

/* Tablet & Below */
@media (max-width: 1024px) {

  .nav-links {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

}
