:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}
  /*Nav bar Css Starts*/

.navbar {
    background: transparent;
    transition: background 0.3s ease-in-out;
    padding: 15px 20px;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
}
@media (max-width: 768px) { 
    .navbar-brand {
        font-size: 20px !important;
        margin-left: 10px !important;
    }
    .navbar-brand span {
        font-size: 10px !important;
    }
}
/*Mega dropdown css Starts*/

.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: 72vw;
    background-color: #f8f9fa;
    padding: 20px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mega-dropdown .container {
    max-width: 95vw;
    margin-left: auto;
}

.mega-dropdown .row {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.mega-dropdown .col-md-2 {
    text-align: left;
    flex: 1;
    min-width: 150px;
}

.mega-dropdown h6 {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
    padding: 4px 11px;
}

.mega-dropdown .dropdown-item {
    font-size: 14px;
    color: #333;
    padding: 4px 11px;
    display: block;
    text-align: left;
}

.mega-dropdown .dropdown-item:hover {
    color: #db0707;
}

@media (max-width: 768px) {
    .mega-dropdown {
        position: fixed; /* Fixes it to the screen */
        top: 0;
        left: 0;
        width: 100%;
        height: 50vh; /* Ensures it covers the full screen height */
        overflow-y: auto !important; /* Enables vertical scrolling */
        background-color: #f8f9fa;
        z-index: 9999; /* Keeps it on top of everything */
        padding: 20px;
        max-height: 100%;
    }

    .mega-dropdown .container {
        max-height: 100%;
        overflow-y: auto; /* Ensures content inside scrolls */
    }

    .mega-dropdown .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mega-dropdown .col-md-2 {
        width: 100%;
        text-align: center;
    }

    .mega-dropdown h6,
    .mega-dropdown .dropdown-item {
        text-align: center;
    }


  
}
/*Megan Menu Dropdowm ends*/

.navbar-nav .nav-item .nav-link {
    font-weight:bold;
      /*font-size: 15px;*/
  
}

.navbar-nav .nav-item .nav-link:hover {
    color:#db0707 !important;
}
@media (max-width: 768px) {
  .navbar-nav .nav-item .nav-link {
    margin-left: 30px; /* Adjust as needed */
  
  }
}
@media (max-width: 768px) {
  .navbar {
    position: fixed !important; /* Keeps it fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    background: white !important; /* Ensures it's always white */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important; /* Optional shadow */
    z-index: 1000; /* Keeps it above other content */
  }
}
/*Nav bard Css ends*/

/*HERO IMAGE LEFT ALIGN CSS*/
/* Hero Section Styling */
#hero-area {
    background: url('../../assets/img/Agile-Pune-featureimage-2025-Grey.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: bottom;
    height: 105vh;
    position: relative;
}

.top-center-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers text horizontally */
    justify-content: flex-start; /* Moves content towards the top */
    text-align: center;
    padding-top: 40px; /* Adjust spacing from the top */
    width: 100%;
    position: relative;
    z-index: 2;
}

/* CONTENT WRAPPER */
.contents {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    top:100px;
}
.icon i {
    font-size: 60px;
    color: #db0707;
    margin-bottom:5px;
    display: block;
}

.head-title {
    font-size:50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: black;
}

.theme-text-hero {
    font-size:25px;
    font-weight: bold;
    color: black;
}

.banner-desc {
    font-size: 18px;
    color: black;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.banner-desc {
    display: flex;
    align-items: center;
    gap: 20px; /* Adjust space between date and venue */
}
.banner-desc i {
    margin-right:1px; /* Closer text to icon */
}

.blink {
    animation: blink-animation 1.5s infinite;
}

@keyframes blink-animation {
    50% {
        opacity: 0;
    }
}
/*for submit link buttons*/
.link-btns-submit {
    display: inline-block;
            background-color: #db0707;
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius:5px;
            transition: 0.3s ease-in-out;
            width:150px;
}
/*for submit link buttons ends*/
.link-btns {
   display: inline-flex;              /* change from inline-block */
  align-items: center;               /* vertical center */
  justify-content: center;           /* horizontal center */

  background-color: #db0707;
  color: #ffffff;
  text-decoration: none;

  height: 45px;
  width: 180px;

  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;

  border-radius: 5px;
  transition: 0.3s ease-in-out;
     
}

.link-btns:hover::after {
    /*content: "REGISTER";*/
     content: "Not Yet Open";
}

.link-btns::after {
    content: "REGISTER";
     
}

.link-btns.closed-btn {
    pointer-events: none;   /* disables click */
    opacity: 0.6;           /* faded effect */
    cursor: not-allowed;
}

.btn-common {
    display: inline-block;
    padding: 12px 25px;
    background: #db0707;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

@media (max-width: 768px) {
    /* Hero area */
    #hero-area {
        background: url('../../assets/img/AgilePune-FeatureImage-2025-Grey.jpg') no-repeat center center;
        background-size: auto 100% !important;
        max-width: 100%;
        height: 105vh !important;
        background-position: right bottom !important;  
    }

    /* Top center text */
    .top-center-text {
        width: 100%;
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* Contents inside hero */
    .contents {
        width: 90%; /* Add some padding from edges */
        margin: 0 auto;
        text-align: center;
    }

    /* Head title */
    .head-title {
        font-size: 24px;
        line-height: 1.3; /* improves spacing on small screens */
    }

    /* Theme text */
    .theme-text-hero {
        font-size: 16px;
        line-height: 1.4;
        margin-top: 10px;
    }

    /* Icons */
    .icon i {
        font-size: 50px;
        display: block;
        margin: 10px auto; /* center icons */
    }

    /* Buttons */
    .btn-common {
        font-size: 14px;
        padding: 10px 20px;
        display: inline-block;
        margin-top: 15px;
        text-align: center;
    }
}
 /*Hero Image Css Ends*/
 
 /*About css Starts*/
.About-US {
    width: 100vw; /* Full width of the viewport */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Soft shadow */
    padding: 20px; /* Adds spacing inside the container */
    background-color: #fff; /* Light background */
    border-radius: 0; /* Removes rounded corners to extend fully */
}

.About-details {
    max-width: 1200px; /* Keeps content centered and readable */
    margin: 0 auto; /* Centers content */
    padding: 20px; /* Adds padding */
}

.About-details h5 {
    text-align: left;
    margin-left: 40px;
}

.About-details p {
    font-size: 1rem;
    margin-left:40px;
    line-height: 1.6; /* Better readability */
}
@media (max-width: 768px) {
    .About-details {
        text-align: center;
        padding: 20px;
    }

    .About-details h5,
    .About-details p {
        margin-left: 0;
        text-align: center;
    }
}
 /*About Css Ends*/
 
  .link-btn {
 display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #db0707;
    color: #fff;
    text-decoration: none;

    width: 150px;      /* same width */
    height: 40px;      /* same height */

    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;

    margin-top: auto;  /* 🔥 THIS IS THE KEY */
        }



        .link-btn:hover::after {
            content: "Not Yet Open";
        }

        .link-btn::after {
            content: "Submit";
        }
        
        
 /*FAQ Section*/
/* FAQ Section */
.faq {
    background: url('../../assets/imgAgile-Pune-FAQ-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

/* Container */
.faq-container {
    width: 90%;
    max-width: 900px;
    background:#fff; /* Slight transparency for readability */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* FAQ Grid - Two Columns */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

/* Individual Column */
.faq-column {
    display: flex;
    flex-direction: column;
    gap:5px;
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 8px;
    padding:10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

/* FAQ Title Button */
.faq-title {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding:6px;
    text-align: left;
    transition: color 0.3s;
}

/* Hover Effect on Title */
.faq-title:hover {
    color: #db0707;
}

/* When Opened */
.faq-title.active {
    color: #db0707;
}

/* FAQ Content (Hidden by Default) */
.faq-content {
    display: none;
    font-size: 14px;
    padding: 10px;
    color: black;
    border-top: 1px solid #ddd;
    margin-top: 10px;
}

/* FAQ Icon */
.faq-icon {
    font-size: 18px;
    transition: transform 0.3s;
    color: #db0707;
}

/* Rotate Icon When Active */
.faq-title.active .faq-icon {
    transform: rotate(180deg);
}

/* Responsive: Switch to 1 Column on Small Screens */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-container {
        width: 95%;
        padding: 15px;
    }
}

/*Program Review Commety*/
  .page-container {
            text-align: center;
            padding: 20px;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
       .committee-container {
            display: flex;
            justify-content: center;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: nowrap; /* Ensures all stay in a row */
            overflow-x: auto; /* Allows scrolling if necessary */
            padding: 15px;
        }
        .member-card {
            background:#fff;
            padding: 20px;
            border-radius: 10px;
            border:1px solid red;
            text-align: center;
            width: 220px;
            /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        .member-card:hover {
            transform: translateY(-10px) rotateX(10deg);
               /*box-shadow: 0 15px 40px rgba(219, 7, 7, 0.7); */
        }
        .member-photo {
            width: 120px;
            height: 120px;
            object-fit: cover;
            margin-bottom: 10px;
       
            border-radius: 15px; /* Gives a futuristic look */
            transition: transform 0.3s ease;
        }
        .member-card:hover .member-photo {
            transform: scale(1.1);
        }
        .member-name {
            font-size: 16px;
            font-weight: bold;
            color:black;
        }
        .member-title {
            font-size: 14px;
            color:black;
        }
        .section-heading {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 30px;
            color:red;
            text-transform: uppercase;
           
        }
        .card-heading {
            font-size: 16px;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 8px;
            display: inline-block;
            margin-bottom: 10px;
            color:#db0707;
         
        }
        /* Neon Border Effect */
        .member-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            /*box-shadow: 0 0 20px cyan;*/
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        .member-card:hover::before {
            opacity: 1;
        }
        
        .committee-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    overflow-x: hidden; /* Hide horizontal scroll */
    padding: 10px;
}

.member-card {
    width: 100%; /* Full width on smaller screens */
    max-width: 220px; /* Prevents stretching */
}

@media (max-width: 768px) {
    .committee-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center them */
    }

    .member-card {
        width: 90%; /* Adjust width for better mobile layout */
    }
}

  /*call for Action      */
.theme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.theme-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.theme-demo1-card {
    /*background: linear-gradient(135deg, #ffffff, #f9f9f9);*/
    background-color:#f4f3f4;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    flex: 1 1 calc(20% - 20px);
    max-width: calc(20% - 20px);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    
}

.theme-demo1-card:hover {
    /*transform: translateY(-15px);*/
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border:2px solid #b30000;
}

.theme-icon {
    font-size: 5vh;
    color:#b30000;
    margin-bottom: 15px;
}

.theme-demo1-card h3 {
    font-size:20px;
    color: #444;
    margin-bottom: 15px;
    font-weight: bold;
}

.theme-demo1-card p {
    font-size: 15px;
    color: #666;
    text-align: center;
}

 .fixed-title {
            font-size:18px; /* Adjust size as needed */
            font-weight: bold;
            color: #333; /* Optional: Change text color */
        }

@media (max-width: 768px) {
    .theme-demo1-card {
        flex: 1 1 calc(33.33% - 20px);
        max-width: calc(33.33% - 20px);
    }
}

@media (max-width: 480px) {
    .theme-demo1-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
 .contact_training_title1 {
            font-size:25px;
            font-weight:700;
            text-align: center;
            color: black;
            
         
        }
  /*Sponsor*/

    .sponsor-content {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .sponsor-logo {
            flex: 3;
            text-align: center;
        }
        .sponsor-logo img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .sponsor-logo img:hover {
            transform: scale(1.1);
        }
        .sponsor-text {
            flex: 9;
            text-align: left;
        }
        .sponsor-text h3 {
            color: #333;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .sponsor-content {
                flex-direction: column;
                text-align: center;
            }
            .sponsor-logo, .sponsor-text {
                flex: 100%;
                text-align: center;
                 padding: 10px;
            }
            .sponsor-text {
                text-align: left;
                padding: 10px;
            }
        }
   /*Conferance 2025*/

     .conference-wrapper {
    margin: 0 auto;
    padding-left: 70px;
    padding-right: 70px;
}

.conference-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding-top: 50px;
}

.conference-card {
    width: calc(20% - 20px);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    /*background-color: #f4f3f4; */
    padding: 10px; /* Add padding to show bg around image */
    transition: transform 0.3s;
}

.conference-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: filter 0.3s;
}

.conference-card:hover {
    transform: scale(1.05);
}

.conference-card:hover img {
    filter: brightness(50%);
}

.conference-card-title {
    margin: 0;
    font-size: 14px;
    color: #ffcc00;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 15px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s, background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.conference-card:hover .conference-card-title {
    opacity: 1;
}

.conference-card:nth-child(1):hover .conference-card-title {
    background-color: #ca0000;
    color: #fff;
}
.conference-card:nth-child(2):hover .conference-card-title {
    background-color: #e04335;
    color: #fff;
}
.conference-card:nth-child(3):hover .conference-card-title {
    background-color: #b32828;
    color: #fff;
}
.conference-card:nth-child(4):hover .conference-card-title {
    background-color: #e82828;
    color: #fff;
}
.conference-card:nth-child(5):hover .conference-card-title {
    background-color: #d63934;
    color: #000;
}

.conference-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1024px) {
    .conference-card {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .conference-container {
        flex-direction: column;
        align-items: center;
    }
    .conference-card {
        width: 100%;
    }
}

  
   /*Footer Section     */
        
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



 .footer {
   background-color: #1c1c1cff;
   padding: 20px;
   height: auto;
   
 }

 .containe {
   max-width: 1270px;
   margin: auto;
 }

 .row {
   display: flex;
   flex-wrap: wrap;
 }

 ul {
   list-style: none;
 }

 .footer-col {

   width: 16%;
   padding: 0 15px;
 }

 #footer h4 {
   font-size: 18px;
   color: #FFF;
   text-transform: capitalize;
   margin-bottom: 20px;
   font-weight: 500;
   position: relative;
   /*padding-left: 30px;*/
 }

 #footer h4::before {
   content: "";
   position: absolute;
   left: 0;
   bottom: -1px;

   height: 2px;
   position: 7px;
 }
 
 #footer ul {
   padding-left:0px;
 }

 #footer ul li:not(:last-child) {
   margin-bottom: 10px;
 }

 #footer ul li a {
   color: #DDD;
   display: block;
   font-size: 15px;
   font-weight: 300;
   text-transform: capitalize;
   text-decoration: none;
   transition: all 0.3s ease;
 }

 #footer ul li a:hover {
   color:#db0707;
  
 }

.footer-copyright p {
 text-align: left;
}
.footer-copyright .social-buttons {
 text-align: right;
}
 @media(max-width: 767px) {
   .footer-col {
     width: 50%;
     margin-bottom: 30px;
   }
   .footer-copyright p {
 text-align: center !important;
 }
.social-buttons {
 text-align: center !important;
}
 }

 @media(max-width: 574px) {
   .footer-col {
     width: 100%;
   }
   .footer-copyright p {
 text-align: center !important;
 }
.social-buttons {
 text-align: center !important;

}
 }
 

.list-inline-item a {
 color: #E7292A;
}
.list-inline-item ul a{
 color: #E7292A;
}
/*Conferance theme*/
.ConferanceTheme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
  .accordion {
            background-color: #fff;
            cursor: pointer;
            padding: 15px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 18px;
            transition: 0.4s;
            border-radius: 5px;
            margin-bottom: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-icon {
            font-size: 16px;
            transition: transform 0.3s;
            margin-left: auto;
        }
        .active .faq-icon {
            transform: rotate(180deg);
        }
        .active, .accordion:hover {
            background-color: #ddd;
        }
        .panel {
            padding: 15px;
            display: none;
            background-color: white;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            margin-bottom: 5px;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 10px;
        }
        .grid-item {
           
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .grid-item h3 {
            margin-bottom: 10px;
            color:#db0707;
            font-size: 15px;
        }
        .grid-item p {
            margin-bottom: 5px;
            color:black;
            font-size: 13px;
            text-align: left;
            line-height:1;
        }
        .bullet-text {
           text-indent: -1em;
            padding-left: 1.5em;
}

.bullet {
    color: #db0707;
    font-weight: bold;
    margin-right:1px;
}
        @media (max-width: 768px) {
    .ConferanceTheme-container {
        padding: 0 10px;
    }
    
    .accordion {
        font-size: 16px;
        padding: 12px;
    }

    .faq-icon {
        font-size: 14px;
    }

    .panel {
        padding: 12px;
    }

    .grid-container {
        grid-template-columns: 1fr; /* Ensures a single column layout on smaller screens */
        gap: 15px;
    }

    .grid-item {
        padding: 15px;
        font-size: 14px;
    }

    .grid-item h3 {
        font-size: 16px;
    }

    .grid-item p {
        font-size: 14px;
        line-height: 1.4;
    }
}
@media (max-width: 600px) {
    .grid-item {
        width: 100%;         /* full width on small screens */
        padding: 15px;       /* slightly less padding */
        box-sizing: border-box;
    }
}
/* --- Gallery Section --- */


/*  .gallery-wrapper {*/
/*    max-width: 1200px;*/
/*    margin: auto;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*  }*/

/*  .gallery-container {*/
/*    display: flex;*/
/*    overflow-x: auto;*/
/*    gap:33px;*/
/*    scroll-behavior: smooth;*/
/*    padding: 10px 20px;*/
/*    scroll-snap-type: x mandatory;*/
/*  }*/

/*  .gallery-container::-webkit-scrollbar {*/
/*    display: none;*/
/*  }*/

/*  .custom-slide {*/
    flex: 0 0 calc(50% - 12.5px); /* 2 slides per row with 25px gap */
/*    scroll-snap-align: start;*/
/*    background: #fff;*/
/*    border-radius: 12px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
/*    transition: transform 0.3s ease;*/
/*  }*/

/*  .custom-slide img {*/
/*    width: 100%;*/
/*    height: 280px;*/
/*    object-fit: cover;*/
/*  }*/

/*  .slide-details {*/
/*    padding: 12px 16px;*/
/*    color: black;*/
/*  }*/

/*  .slide-details .date {*/
/*    font-size: 13px;*/
/*  }*/

/*  .slide-details .topic {*/
/*    font-size: 16px;*/
/*    margin: 6px 0;*/
/*  }*/

/*  .slide-details .hosted {*/
/*    font-size: 14px;*/
/*  }*/

/*  .arrow-container {*/
/*    position: absolute;*/
/*    top: 40%;*/
/*    width: 100%;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    pointer-events: none;*/
/*    z-index: 2;*/
/*  }*/

/*  .arrow {*/
/*    pointer-events: auto;*/
/*    background-color: white;*/
/*    border: none;*/
/*    border-radius: 50%;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);*/
/*    cursor: pointer;*/
/*    font-size: 20px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: transform 0.2s ease;*/
/*  }*/

/*  .arrow:hover {*/
/*    transform: scale(1.1);*/
/*  }*/

/*  @media (max-width: 768px) {*/
/*    .custom-slide {*/
/*      flex: 0 0 90%;*/
/*    }*/

/*    .arrow {*/
/*      display: none;*/
/*    }*/
/*  }*/
  

    /*Panel Theam Css start*/
    
    /*Panel Theam Css start*/
    
   .button-section {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }


    /* Panel Card */
    .panel-card {
      max-width: 1200px;
      margin: 30px auto;
      background: #f9f9f9;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
      transition: all 0.3s ease-in-out;
    }

    .panel-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }

    .panel-column {
      flex: 1 1 45%;
    }

    .panel-item {
      margin-bottom: 30px;
    }

    .panel-item h4 {
      margin-bottom: 10px;
      color:black;
      font-size:16px;
    }

    .panel-item p {
      color:black;
      line-height: 1.6;
      font-size:14px;
    }

    /* Toggle visibility */
    .hidden {
      display: none;
    }
    /*workshop Css*/
    
   .workshop-pune-wrapper {
  display: flex;
  justify-content: center;
  /*padding: 40px;*/

}

.workshop-pune-card {
 width:350px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.workshop-pune-image {
  width: 200px;
  height: 200px;  /* same as card width */
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.workshop-pune-title {
  color: #db0707;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: left;
}

.workshop-pune-info-list {
  text-align: left;
  padding: 0;
  list-style-type: none;
  font-size: 14px;
  margin-bottom: 20px;
}

.workshop-pune-info-list li {
  margin: 6px 0;
}

.workshop-pune-button {
    display: inline-block;
    padding: 12px 25px;
    background: #db0707;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}


/*option 2*/
.workshop-card-modern {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 800px;
  margin: 40px auto;
  transition: transform 0.3s ease;
}

.workshop-card-modern:hover {
  transform: translateY(-6px);
}

.workshop-card-image {
  flex: 0 0 40%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.workshop-card-content {
  flex: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workshop-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #d32f2f; /* bright red accent */
  margin-bottom: 20px;
  line-height: 1.2;
}

.workshop-card-info {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  font-size: 16px;
  color: #444;
}

.workshop-card-info li {
  margin-bottom: 12px;
}

.workshop-card-info strong {
  color: #222;
}

.workshop-card-actions {
  display: flex;
  gap: 20px;
}

.btn-modern {
  background-color: #d32f2f;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-modern:hover {
  background-color: #b71c1c;
  box-shadow: 0 6px 18px rgba(183, 28, 28, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .workshop-card-modern {
    flex-direction: column;
    max-width: 100%;
    margin: 20px 10px;
  }

  .workshop-card-image {
    width: 100%;
    height: 220px;
    border-radius: 12px 12px 0 0;
  }

  .workshop-card-content {
    padding: 20px 25px;
  }

  .workshop-card-actions {
    justify-content: center;
  }
}
/*Speaker Section*/

  .card-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      /*padding: 40px 20px;*/
      background: #f5f5f5;
    }

    .keynote-card-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

  .keynote-card {
  flex: 1 1 calc(20% - 20px);
  max-width: calc(20% - 20px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  border-top: 5px solid #b0b0b0;
  min-width: 180px;
 height:270px;
}


    .keynote-tag {
      background: #e0e0e0;
      color: #db0707;
      padding: 8px;
      font-weight: bold;
      font-size: 0.85rem;
      letter-spacing: 1px;
    }
   
.keynote-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-top: 20px;       /* ðŸ‘ˆ brings image down */
  margin-bottom: 10px;
  border-radius: 15px;     /* futuristic rounded style */
  transition: transform 0.3s ease;
}


    .keynote-name {
       font-size: 16px;
       font-weight: bold;
       color:black;
    }

    .keynote-role {
      font-size: 14px;
     
       color:black;
    }

    /* Responsive Layout */
    @media (max-width: 1200px) {
      .keynote-card {
        flex: 1 1 calc(25% - 20px);
        max-width: calc(25% - 20px);
      }
    }

    @media (max-width: 900px) {
      .keynote-card {
        flex: 1 1 calc(33.33% - 20px);
        max-width: calc(33.33% - 20px);
      }
    }

    @media (max-width: 600px) {
      .keynote-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 400px) {
      .keynote-card {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }
    
    
    .speaker-label {
  font-size: 16px;         /* Adjust text size */
  color: #d32f2f;          /* Set text color (deep red) */
  font-weight: 600;        /* Make it bold */
  text-transform: uppercase; /* Optional: make text uppercase */
  margin-top: 8px;         /* Add small spacing */
  letter-spacing: 1px;     /* Improve readability */
}
 /* Gallery Section */
.gallery-section {
  background: #f4f3f4;

}

.gallery-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Owl Carousel container */
.gallery-container {
  padding: 10px 0;
  position: relative;
}

/* Individual Slide */
.custom-slide {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.custom-slide:hover {
  transform: scale(1.02);
}

.custom-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Text Details */
.slide-details {
  padding: 15px 20px;
  color: #000;
}

.slide-details .date {
  font-size: 13px;
  color: #777;
}

.slide-details .topic {
  font-size: 17px;
  font-weight: 600;
  margin: 8px 0;
}

.slide-details .hosted {
  font-size: 14px;
  color: #444;
}

/* Owl Carousel Arrows (Always visible) */
.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  pointer-events: all;
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover effect */
.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.1);
}

/* Always show nav arrows, even if disabled */
.owl-nav.disabled {
  display: flex !important;
}

/* Section Title */
.contact_training_title1 {
  font-size: 26px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .custom-slide img {
    height: 200px;
  }

  .slide-details {
    padding: 10px 15px;
  }

  .owl-nav {
    display: none; /* Optional: Hide arrows on mobile */
  }
}
 /*ho - cost Sction*/
      .host-section {
    width: 100%;
    text-align: center;
    padding:10px;
   
  }

  .host-image {
    width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .host-image:hover {
    transform: scale(1.05);
  }
  /*Sechudule*/
  /* ===== Base Section ===== */
    .apschedule-section {
      background: #f7f6f9;
      padding: 60px 15px;
      font-family: "Poppins", sans-serif;
    }

    /* ===== Wrapper & Tabs ===== */
    .apschedule-wrapper {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .apschedule-tabs {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .apschedule-tabbtn {
      border: 2px solid #ddd;
      padding: 10px 25px;
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .apschedule-tabbtn:hover {
      transform: translateY(-2px);
    }

    .apschedule-tabbtn.active {
      background: #db0707;
      color: #fff;
      border-color: #db0707;
      box-shadow: 0 6px 16px rgba(230, 57, 70, 0.18);
    }

    /* ===== Container & Days ===== */
    .apschedule-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .apschedule-day {
      display: none;
      animation: fadeIn 0.5s ease;
    }

    .apschedule-day.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===== Default Cards ===== */
    .apschedule-card {
      display: flex;
      align-items: flex-start;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      padding: 20px;
      margin-bottom: 20px;
      transition: 0.3s ease;
    }

    .apschedule-card:hover {
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px);
    }

    /* ===== Time Box ===== */
    .apschedule-time {
      background: #db0707;
      color: #fff;
      font-weight: 700;
      padding: 12px 15px;
      border-radius: 5px;
      min-width: 120px;
      text-align: center;
      font-size: 14px;
      margin-right: 20px;
    }

    /* ===== Details ===== */
    .apschedule-details {
      flex: 1;
    }

    .apschedule-details h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #000;
    }

    .apschedule-details h4 {
      font-size: 15px;
      font-weight: 500;
      color: #000;
      margin-bottom: 4px;
      line-height: 1.4;
      word-break: break-word;
      white-space: normal;
    }

    /* ===== Speaker Info ===== */
    .apschedule-speaker {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 6px;
      flex-wrap: wrap;
    }

    .apschedule-speaker img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }

    .apschedule-speaker-info {
      max-width: 230px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* ✅ Proper wrapping for long titles */
    .apschedule-session-title {
      font-size: 15px;
      font-weight: 600;
      color: #000;
      margin: 0 0 6px;
      line-height: 1.5;
      word-wrap: break-word;
      overflow-wrap: anywhere;
      white-space: normal;
    }

.apschedule-speaker-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 400;  /* changed from 600 to normal */
  color: #000;
  width: 350px;
  margin-bottom: 5px;
}

.apschedule-speaker-info h5{
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
   
 
}

    .apschedule-speaker-info p {
      font-size: 13px;
      color: #555;
      margin: 4px 0 0;
      line-height: 1.4;
    }

    /* ===== Panel Discussion ===== */
    .apschedule-panel-speakers {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 25px;
      margin-top: 20px;
    }

    .apschedule-panel-speaker {
      flex: 1 1 calc(25% - 20px);
      text-align: center;
    }

    .apschedule-panel-speaker img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .apschedule-panel-speaker h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 3px;
      color: #000;
    }

    .apschedule-panel-speaker span {
      font-size: 13px;
      color: #555;
      line-height: 1.4;
    }

    .apschedule-panel-speaker .moderator {
      color: #e63946;
      font-weight: 600;
      font-size: 13px;
      margin-top: 3px;
    }

    /* ===== Parallel Tracks Section ===== */
    .apschedule-trackblock {
      background: #fff;
      border-radius: 12px;
       padding: 15px 10px 10px; /* top right-left bottom */
      margin-bottom: 25px;
    }

    .apschedule-trackrow {
      display: grid;
      grid-template-columns: 160px 1fr 1fr;
      gap: 20px;
      align-items: stretch;
    }

    .apschedule-timebox {
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    .apschedule-card.track-card-inner {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
      padding: 20px;
      transition: 0.3s ease;
    }

    .apschedule-card.track-card-inner:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .track-card-inner h3 {
      font-size: 18px;
      font-weight: 700;
      color: #000;
      margin-bottom: 10px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 900px) {
      .apschedule-trackrow {
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
      }

      .apschedule-timebox {
        justify-content: center;
        margin-bottom: 10px;
      }

      .apschedule-card.track-card-inner {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
      }

      .apschedule-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
      }

      .apschedule-time {
        margin-bottom: 10px;
        margin-right: 0;
      }

      .apschedule-speaker {
        justify-content: center;
      }

      .apschedule-speaker-info {
        text-align: center;
      }

      .apschedule-panel-speakers {
        justify-content: center;
      }

      .apschedule-panel-speaker {
        flex: 1 1 45%;
        max-width: 300px;
      }
    }
@media (max-width: 768px) {
  .apschedule-speaker-info h4 {
    text-align: center;
    width: 100%; /* ensures full width for proper centering */
  }
}
    @media (max-width: 600px) {
      .apschedule-panel-speaker {
        flex: 1 1 100%;
        max-width: 320px;
      }

      .apschedule-time {
        width: 100%;
        max-width: 220px;
      }

      .apschedule-card.track-card-inner {
        max-width: 100%;
      }
    }
    .click-note {
  display: block;                /* allows center alignment */
  text-align: center;            /* centers the text */
  font-size: 14px;               /* small text */
  font-weight: 600;
  color:#db0707;                 /* red */
  margin-top: 8px;
  
}
/*Project presentation*/
.project-demo {
  text-align: center;
  background: #f7f6f9;
  padding: 60px 0;
}

.project-demo h2 {
  font-size: 28px;
  color: #000;
  margin-bottom: 10px;
}

.project-demo p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.project-card {
  display: inline-block;
  perspective: 1000px; /* Enables 3D effect */
}

.project-inner {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}



.project-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-inner:hover .overlay {
  opacity: 1;
}

/* Button */
.know-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #db0707;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}



/* ======= MOBILE VIEW ======= */
@media (max-width: 768px) {
  .project-inner {
    width: 90%;
    height: auto;
    transform: none; /* Disable 3D rotation */
    box-shadow: none;
  }

  .project-inner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .overlay {
    opacity: 1; /* Always show overlay or make visible on mobile */
    background: rgba(0, 0, 0, 0.4);
  }

  .know-more-btn {
    background: red;
    color: #fff;
    border: none;
  }

  .project-demo h2 {
    font-size: 22px;
  }

  .project-demo p {
    font-size: 14px;
  }
}


/* =====================================================
   GLOBAL FIX (important)
===================================================== */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* =====================================================
   Past Sponsors – Full Width Parallax Section
===================================================== */
.past-sponsors-parallax {
  position: relative;
  min-height: 420px;
  /* Background */
    background-image: url('../img/Sponsors/Sponsor-Ap.JPG');
   background-size: auto auto;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
  /* Layout */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* =====================================================
   Desktop Only – Fixed Background
===================================================== */
@media (min-width: 769px) {
  .past-sponsors-parallax {
    background-attachment: fixed;
  }
}

/* =====================================================
   Overlay
===================================================== */
.past-sponsors-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);  /* Black 50% */
  z-index: 1;
}

/* =====================================================
   Content
===================================================== */
.past-sponsors-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.past-sponsors-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.past-sponsors-content p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* =====================================================
   Sponsor Logo
===================================================== */
.past-sponsors-logo img {
  max-width: 180px;
  background: #ffffff;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* =====================================================
   Mobile View Fix
===================================================== */
@media (max-width: 768px) {
  .past-sponsors-parallax {
    min-height: 300px;
    background-attachment: scroll;  /* REQUIRED for mobile */
    background-size: contain;
  }

  .past-sponsors-content h2 {
    font-size: 30px;
  }

  .past-sponsors-logo img {
    max-width: 150px;
  }
}
/* ================================
   AP New Gallery
================================ */
.AP-new-GAllery {
  /*padding: 70px 20px;*/
  /*background: #f8f9fa;*/
  text-align: center;
}

.ap-gallery-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Grid */
.ap-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Image Card */
.ap-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.ap-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Effect */
.ap-gallery-item::after {
  /*content: "View Image";*/
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ap-gallery-item:hover img {
  transform: scale(1.1);
}

.ap-gallery-item:hover::after {
  opacity: 1;
}

/* ================================
   Modal Preview
================================ */
.ap-gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.ap-modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* Close Button */
.ap-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ================================
   Responsive
================================ */
@media (max-width: 992px) {
  .ap-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ap-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ap-gallery-title {
    font-size: 28px;
  }
}
