html, body {
    overflow-x: hidden;
}
/* ===== NAVBAR ===== */
/* ===== NAVBAR ===== */
.navbar{
    position:fixed;
    top:10px;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    max-width:1200px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:12px 35px;

    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.7);

    border-radius:50px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    z-index:1000;
}
/* ===== LOGO ===== */
.logo{
    display:flex;
    align-items:center;
}

.logo-img{
    height:45px;
}

/* ===== NAV LINKS ===== */
.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

/* ===== LINKS ===== */
.nav-links a{
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:600;
    position:relative;
}

/* Hover underline */
.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#2563eb;
    transition:0.3s;
}

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

/* ===== JOIN BUTTON ===== */
.join-btn{
    margin-left:30px;
    padding:10px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#4f46e5);
}

/* ===== HAMBURGER ===== */
.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
    color: #000;
}

@media(max-width:768px){

.hamburger{
    display:block;
    color:black;
}

}
/* ===== MOBILE ===== */
@media(max-width:768px){

    .navbar{
        padding:14px 20px;
    }

    /* hide join button from navbar */
    .join-btn{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        gap:20px;
        padding:30px 0;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    /* show join button inside menu */
    .nav-links .join-btn{
        display:block;
        margin-top:10px;
    }
}

/* ===== Hero Section ===== */

.hero{
    min-height:100vh;
    width:100%;
    /* background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("images/bg-img.webp"); */
    /* background-image: url("images/home-bg-3.webp"); */
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                    url("images/home-bg-3.webp"); */
                    /* background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
                            url("images/home-bg-3.webp"); */
                            background-image: url(images/home-bg-4.jpg);
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-content{
    display:flex;
    flex-direction:column;   /* vertical layout */
    align-items:center;      /* horizontal center */
    justify-content:center;  /* vertical center */
    gap:30px;
    text-align:center;
}

.hero-image img{
    width:100vh;
    max-width:450px;
    border-radius:20px;
    /* box-shadow:0 20px 40px rgba(0,0,0,0.4); */
}

.hero-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
}

.hero-buttons a{
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary{
    background:#ff9800;
    color:#000;
}

.btn-primary:hover{
    background:#ffa726;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* The base state of the button */
.pcr-btn-secondary {
  background-color: #000000; /* Solid Black */
  color: #ffffff;            /* White text for contrast */
  padding: 10px 20px;       /* Adjust padding as needed */
  text-decoration: none;     /* Removes underline from <a> tag */
  display: inline-block;
  transition: background-color 0.3s ease; /* Smooth color transition */
  border-radius: 4px;        /* Optional: adds a slight curve to corners */
}

/* The hover state */
.pcr-btn-secondary:hover{
  background-color: #326CCF; /* The specific blue shade you requested */
  color: #ffffff;            /* Ensures text stays white on blue */
}

/* ========================= */
/* 📱 Responsive Media Query */
/* ========================= */
@media (max-width: 768px){

    .hero{
        padding:20px;
    }

    .hero-image img{
        width:90vw;          /* responsive width */
        max-width:320px;     /* smaller image on mobile */
    }

    .hero-buttons{
        flex-direction:column;   /* buttons vertical */
        gap:12px;
        width:100%;
        align-items:center;
    }

    .hero-buttons a{
        width:80%;
        text-align:center;
    }
}

/* Extra small devices */
@media (max-width: 480px){

    .hero-image img{
        max-width:260px;
    }

    .hero-buttons a{
        width:90%;
        padding:12px 20px;
        font-size:14px;
    }
}



/* partners section  */

.partners{
    background: linear-gradient(135deg, #0f3460, #16213e);
    
}

.partners-section{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
    text-align:center;
    font-family:Arial, sans-serif;

    /* ✅ Added Background (without any change) */
    /* background: linear-gradient(135deg, #0f3460, #16213e); */
}

.title{
    font-size:42px;
    font-weight:800;
    background: linear-gradient(90deg, #0d47a1, #42a5f5, #e3f2fd, #42a5f5, #0d47a1);
    background-size:300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing:1px;
    text-transform:uppercase;
    position:relative;
    display:inline-block;
    padding-bottom:35px;
    animation: gradientMove 6s linear infinite;
    margin-bottom:12px;
}

/* Line */
.title::after{
    content:"";
    width:160px;
    height:3px;
    background: linear-gradient(90deg, #0d47a1, #42a5f5, #e3f2fd, #42a5f5, #0d47a1);
    background-size:300% 100%;
    position:absolute;
    left:50%;
    bottom:10px;
    transform:translateX(-50%);
    border-radius:10px;
    animation: gradientMove 6s linear infinite;
}

/* Circle */
.title::before{
    content:"";
    width:12px;
    height:12px;
    background:#42a5f5;
    border-radius:50%;
    position:absolute;
    left:50%;
    bottom:8px;
    transform:translateX(-50%);
    z-index:2;
    box-shadow:0 0 10px rgba(66,165,245,0.6);
    animation: pulse 1.8s ease-in-out infinite;
}

/* Animations */
@keyframes gradientMove{
    0%{ background-position:0% 50%; }
    100%{ background-position:100% 50%; }
}

@keyframes pulse{
    0%{
        transform:translateX(-50%) scale(1);
        box-shadow:0 0 10px rgba(66,165,245,0.6);
    }
    50%{
        transform:translateX(-50%) scale(1.4);
        box-shadow:0 0 22px rgba(66,165,245,0.9);
    }
    100%{
        transform:translateX(-50%) scale(1);
        box-shadow:0 0 10px rgba(66,165,245,0.6);
    }
}

.partners-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:25px;
}

.partner-card{
    background:#fff;
    border-radius:20px;
    padding:20px;
    text-decoration:none;
    color:#000;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    transition:0.3s ease;
}

.partner-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,0.2);
}

.partner-card img{
    width:100%;
    border-radius:12px;
    margin-bottom:15px;
    transition:0.3s ease;
}

.partner-card:hover img{
    transform:scale(1.05);
}

.partner-card h2{
    font-size:20px;
    font-weight:700;
    color:#0d47a1;
    position:relative;
    display:inline-block;
    padding:6px 14px;
    border-radius:8px;
    background: linear-gradient(90deg, rgba(13,71,161,0.12), rgba(66,165,245,0.25));
    box-shadow:0 4px 10px rgba(66,165,245,0.25);
    letter-spacing:0.5px;
    margin-bottom:12px;   /* ✅ gap added */
}

/* glow underline */
.partner-card h2::after{
    content:"";
    position:absolute;
    left:10%;
    bottom:-6px;
    width:80%;
    height:2px;
    background: linear-gradient(90deg, #0d47a1, #42a5f5, #e3f2fd);
    border-radius:10px;
    /* box-shadow:0 0 10px rgba(66,165,245,0.6); */
}

.partner-card p{
    color:gray;
    font-size:14px;
    margin-top:8px;   /* ✅ extra smooth spacing */
}


/* Speakers section */
/* SECTION */
.speakers{
    width:100%;
    padding:90px 0;
    background:linear-gradient(135deg,#f1f5ff,#e9f2ff);
    overflow:hidden;
}

/* TITLE */
/* TITLE */
.speaker-title{
    font-size:42px;
    font-weight:800;
    background: linear-gradient(90deg,#0d47a1,#42a5f5,#e3f2fd,#42a5f5,#0d47a1);
    background-size:300% 100%;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    letter-spacing:1px;
    text-transform:uppercase;
    position:relative;
    display:block;
    padding-bottom:35px;
    text-align:center;
    margin:0 auto 50px auto;
    animation:gradientMove 6s linear infinite;
}

/* Line */
.speaker-title::after{
    content:"";
    width:160px;
    height:3px;
    background: linear-gradient(90deg,#0d47a1,#42a5f5,#e3f2fd,#42a5f5,#0d47a1);
    background-size:300% 100%;
    position:absolute;
    left:50%;
    bottom:10px;
    transform:translateX(-50%);
    border-radius:10px;
    animation:gradientMove 6s linear infinite;
}

/* Circle */
.speaker-title::before{
    content:"";
    width:12px;
    height:12px;
    background:#42a5f5;
    border-radius:50%;
    position:absolute;
    left:50%;
    bottom:8px;
    transform:translateX(-50%);
    z-index:2;
    box-shadow:0 0 10px rgba(66,165,245,0.6);
    animation:pulse 1.8s ease-in-out infinite;
}

/* Gradient Animation */
@keyframes gradientMove{
    0%{background-position:0% 50%;}
    100%{background-position:100% 50%;}
}

/* Pulse Animation */
@keyframes pulse{
    0%{
        transform:translateX(-50%) scale(1);
        box-shadow:0 0 10px rgba(66,165,245,0.6);
    }
    50%{
        transform:translateX(-50%) scale(1.4);
        box-shadow:0 0 22px rgba(66,165,245,0.9);
    }
    100%{
        transform:translateX(-50%) scale(1);
        box-shadow:0 0 10px rgba(66,165,245,0.6);
    }
}
/* SLIDER */
.speaker-slider{
    width:100%;
    overflow:hidden;
}

/* TRACK */
.speaker-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:scroll 30s linear infinite;
}

/* STOP SCROLL ON HOVER */
.speaker-slider:hover .speaker-track{
    animation-play-state: paused;
}

/* CARD */
.speaker-card{
     width:280px;
    flex-shrink:0;
    background:white;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    transition:all .35s ease;
}

/* HOVER EFFECT */
.speaker-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* IMAGE CENTER */
/* IMAGE */
.speaker-card img{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 18px auto;
    display:block;
    border:4px solid transparent;
    transition:all .35s ease;
}

/* IMAGE HOVER EFFECT */
.speaker-card:hover img{
    transform:scale(1.08);
    border-color:#42a5f5;
    box-shadow:0 0 15px rgba(66,165,245,0.6);
}

/* CARD HOVER */
.speaker-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}


.speaker-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* NAME */
.speaker-card h4{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
    color:#111;
}

/* ROLE */
.speaker-card .role{
    font-size:14px;
    font-weight:600;
    color:#42a5f5;
    margin-bottom:4px;
}

/* COMPANY */
.speaker-card span{
    font-size:13px;
    color:#666;
}

/* AUTO SCROLL */
@keyframes scroll{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

/* TITLE ANIMATION */
@keyframes gradientMove{
    0%{background-position:0%}
    100%{background-position:100%}
}

/* RESPONSIVE */
@media(max-width:1200px){
    .speaker-card{
        width:240px;
    }
}

@media(max-width:992px){
    .speaker-card{
        width:220px;
    }
}

@media(max-width:768px){
    .speaker-card{
        width:200px;
    }

    .speaker-track{
        animation-duration:60s;
    }
}

/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
}

.power-section {
  position: relative;
  height: 700px;   /* 520 se bada kiya */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* ===== BACKGROUNDS ===== */
/* ===== SECTION 1 (White Premium) ===== */
.section-1 {
       background: linear-gradient(135deg, #0f3460, #2d3d69);
  color: #ffffff;
}

.section-2 {
  background: linear-gradient(135deg, #f1f5ff, #e9f2ff);
  color: #ffffff;
}

.section-3 {
  background: linear-gradient(135deg, #0f3460, #415180);
  color: #ffffff;
}

/* ===== TITLE ===== */
.content h2 {
  font-size: 42px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(255,215,0,0.8);
  
}


.animated-title{
    font-size:42px;
    font-weight:800;
    text-align:center;

    /* Gradient Color */
    background: linear-gradient(90deg,#2563eb,#4f46e5,#041a37,#2563eb);
    background-size:300%;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation: textMove 6s linear infinite;
}

/* Animation */
@keyframes textMove{
    0%{
        background-position:0%;
    }
    100%{
        background-position:300%;
    }
}
.content p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 10px;
  color: #000;
}

/* ===== GOLD UNDERLINE ===== */
.title-underline {
  width: 160px;
  height: 2px;
  margin: 18px auto 20px;
  background: linear-gradient(90deg, 
    rgba(255,215,0,0) 0%, 
    rgb(116, 122, 196) 50%, 
    rgba(105, 130, 165, 0) 100%);
  position: relative;
}

.title-underline::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: rgb(44, 29, 106);
  left: 50%;
  transform: translateX(-50%);
  top: -1px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgb(6, 0, 9);
}

/* ===== SLIDER ===== */
/* ===== SECTION WRAPPER GAP ===== */
.power-section {
  padding: 80px 8%;   /* left & right gap */
  box-sizing: border-box;
}

/* ===== SLIDER WRAPPER ===== */
.slider {
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

/* Soft Fade Left & Right Effect */
.slider::before,
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* ===== TRACK ===== */
.slide-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

/* Different section speeds */
.slide-track.reverse {
  animation: scrollRight 40s linear infinite;
}

.slide-track.slow {
  animation: scrollLeft 55s linear infinite;
}
/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #000;
  font-size: 40px;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  z-index: 5;
}

.arrow:hover {
  background: rgba(255,255,255,0.3);
}

.arrow.left {
  left: -20px;
}

.arrow.right {
  right: -20px;
}

/* ===== IMAGES ===== */
/* ===== IMAGES FULL VISIBLE ===== */
.slide-track img {
  width: 520px;
  height: auto;        /* IMPORTANT */
  display: block;      /* spacing remove */
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transition: 0.4s ease;
}

/* Hover effect */
.slide-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Pause on hover */
.slider:hover .slide-track {
  animation-play-state: paused;
}

/* ===== SCROLL ANIMATION ===== */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===== FLOAT ANIMATION (Subtle Movement) ===== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}



/* awards section  */

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

body{
background:#d3dbe7;
}

.awards-section{
padding:80px 20px;
}

.container{
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
font-size:36px;
font-weight:700;
margin-bottom:40px;
color:#000;
}

.section-title::after{
content:"";
width:90px;
height:4px;
background:linear-gradient(90deg,#4e73df,#1cc88a);
display:block;
margin:12px auto 0;
border-radius:10px;
}

.awards-slider{
width:100%;
overflow:hidden;
}

.awards-grid{
display:flex;
gap:30px;
animation:scrollAwards 25s linear infinite;
}

/* HOVER PAR SCROLL STOP */
.awards-slider:hover .awards-grid{
animation-play-state:paused;
}

/* CARD */
.award-card{
min-width:calc(33.333% - 20px);
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.5s;
cursor:pointer;
transform-style:preserve-3d;
}

/* FLIP RIGHT EFFECT */
.award-card:hover{
animation:flipRight 0.8s forwards;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.award-img{
width:100%;
height:auto;
object-fit:cover;
}

.award-content{
padding:20px;
}

.company-name{
font-size:20px;
font-weight:600;
color:#4e73df;
margin-bottom:5px;
}

.award-title{
font-size:18px;
color:#333;
margin-bottom:10px;
}

.award-description{
font-size:14px;
color:#666;
line-height:1.6;
}

/* AUTO SCROLL */
@keyframes scrollAwards{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

/* FLIP RIGHT ANIMATION */
@keyframes flipRight{
0%{
transform:rotateY(0deg);
}
100%{
transform:rotateY(15deg);
}
}

/* MOBILE */
@media(max-width:768px){

.section-title{
font-size:28px;
}

.award-card{
min-width:100%;
}

}
/* footer section */

/* Footer base */
.clean-footer{
  background:#16223d;
  color:#cbd5e1;
  padding:70px 0 25px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

/* GRID LAYOUT */
.clean-footer .footer-top{
  display:grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 columns */
  gap:40px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding-bottom:35px;
  margin-bottom:20px;
}

/* Column */
.clean-footer .footer-col{
  width:100%;
}

/* Logo */
.clean-footer .footer-logo{
  width:170px;
  margin-bottom:15px;
}

/* Text */
.clean-footer .footer-bio{
  font-size:14px;
  line-height:1.7;
  max-width:340px;
  color:#94a3b8;
}

/* Titles */
.clean-footer .footer-title{
  font-size:15px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:14px;
  color:#e2e8f0;
}

/* Links */
.clean-footer .footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.clean-footer .footer-links li{
  margin-bottom:10px;
}
.clean-footer .footer-links a{
  font-size:14px;
  color:#94a3b8;
  text-decoration:none;
  transition:0.2s ease;
}
.clean-footer .footer-links a:hover{
  color:#e2e8f0;
}

/* Social */
.clean-footer .social-links{
  margin-top:14px;
  display:flex;
  gap:12px;
}
.clean-footer .social-links a{
  color:#94a3b8;
  font-size:16px;
  transition:0.2s;
}
.clean-footer .social-links a:hover{
  color:#e2e8f0;
}

/* Contact */
.clean-footer .footer-contact{
  font-size:14px;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}
.clean-footer .footer-contact i{
  font-size:15px;
  color:#94a3b8;
}

.clean-footer .footer-contact a{
  color:#94a3b8;
  text-decoration:none;
}
.clean-footer .footer-contact a:hover{
  color:#e2e8f0;
}

/* Bottom */
.clean-footer .footer-bottom{
  text-align:center;
  font-size:13px;
  color:#94a3b8;
}

.clean-footer .footer-bottom span{
  font-weight:600;
  color:#e2e8f0;
}

/* ===================== */
/* RESPONSIVE BREAKPOINTS */
/* ===================== */

/* Tablet */
@media(max-width:992px){
  .clean-footer .footer-top{
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

/* Mobile */
@media(max-width:600px){
  .clean-footer .footer-top{
    grid-template-columns: 1fr; /* 1 column */
    text-align:center;
  }

  .clean-footer .social-links{
    justify-content:center;
  }

  .clean-footer .footer-contact{
    justify-content:center;
  }

  .clean-footer .footer-bio{
    margin:0 auto;
  }
}