/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Body Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #caf0f8;

}



/* Scroll Down Button */
.scroll-down-btn {
  position: relative;
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #08161e;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-down-btn:hover {
  background-color: #023e8a;
  transform: scale(1.1);
}

.scroll-down-btn:active {
  transform: scale(0.95);
}
.scroll-down-btn i {
  font-size: 24px;
  color: #ffffff;
}




/* Chat Toggle Button */
#botToggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0077b6;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
  justify-content: center;
  left: auto;
}

#botToggle:hover {
  background-color: #000000;
  transform: scale(1.05);
}

/* Chatbot Box */
#chatbot {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-height: 420px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  overflow: hidden;
}

/* Header */
.chatbot-header {
  background: #0077b6;
  color: white;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px 12px 0 0;
}

/* Chat Body */
.chatbot-body {
  padding: 12px;
  height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8f9fa;
}

/* Messages */
.bot-message,
.user-message {
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 80%;
  font-size: 0.95rem;
  word-wrap: break-word;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bot-message {
  background: #caf0f8;
  align-self: flex-start;
  color: #03045e;
}

.user-message {
  background: #90e0ef;
  align-self: flex-end;
  color: #023e8a;
}

/* Input Area */
.chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
  background: #fff;
}

.chatbot-input input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 1rem;
  outline: none;
}

.chatbot-input input:focus {
  background-color: #f1faff;
}

.chatbot-input button {
  border: none;
  background: #00b4d8;
  color: white;
  padding: 12px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.chatbot-input button:hover {
  background: #0096c7;
}

/* Responsive Enhancements */
@media (max-width: 500px) {
  #chatbot {
    width: 95%;
    right: 2.5%;
    bottom: 80px;
  }

  #botToggle {
    right: 2.5%;
  }
}









.offer-banner {
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    align-items: center;
    justify-content: center;
    background: #caf0f8; /* Light blue */
    width: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 24px 8px 18px 8px;
    box-sizing: border-box;
    gap: 12px;
}

.banner-logo {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
    height: auto;
}

.banner-text {
    margin: 0 auto;
    width: 100%;
    max-width: 95vw;
    color: #03045e; /* Dark blue */
    text-shadow: 2px 2px 8px rgba(244,255,0,0.7); /* Yellowish shadow */
    padding: 6px;
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0;
}

.college-name {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.college-tagline {
    font-size: 1rem;
    margin-top: 8px;
    font-weight: 500;
    color: #023e8a; /* Medium blue */
}

/* Tablet / iPad (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .offer-banner {
        padding: 60px 30px 40px 30px;
        min-height: 320px;
        gap: 20px;
    }
    .banner-logo {
        max-width: 300px;
    }
    .banner-text {
        max-width: 700px;
        padding: 16px;
    }
    .college-name {
        font-size: 3rem;
    }
    .college-tagline {
        font-size: 1.5rem;
        margin-top: 14px;
    }
}

/* Desktop / Laptop (1025px and up) */
@media (min-width: 1025px) {
    .offer-banner {
        flex-direction: row;
        justify-content: flex-start;
        min-height: 360px;
        padding: 80px 0;
        gap: 56px;
        text-align: left;
    }
    .offer-banner picture {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 300px;
        max-width: 320px;
        margin-left: 80px;
        margin-right: 0;
        flex-shrink: 0;
    }
    .banner-logo {
        width: 100%;
        max-width: 320px;
        min-width: 180px;
    }
    .banner-text {
        flex-direction: column;
        align-items: flex-start;
        max-width: 1200px;
        padding: 0 50px;
        background: none;
    }
    .college-name {
        font-size: 4rem;
        font-weight: 1000;
        margin: 0 0 18px 0;
    }
    .college-tagline {
        font-size: 1.84rem;
        margin-top: 2px;
    }
}

/* Animation for banner text */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}









/* === BASE NAVBAR === */
.navbar {
  background: linear-gradient(90deg, #140d50, #140a6c);
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: left;
  position: fixed;
  top: 0;
  left: 5;
  width: 100%;
  box-shadow: 0 2px 12px rgba(20, 13, 80, 0.13);
  z-index: 1200;
}

.navbar-container {
  display: flex;
  align-items: left;
  justify-content: left;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === LOGO === */
.navbar-logo {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

/* === SEARCH WRAPPER === */
.navbar-search-wrapper {
  display: flex;
  align-items: left;
  gap: 2px;
  flex-grow: 1;
  max-width: 200px;
  margin: 2 10px;
}

#navbar-search-box {
  flex: 1;
  padding: 6px 10px;
  border-radius: 4px 0 0 4px;
  border: none;
  width: 10px;
}

#navbar-search-button {
  padding: 6px 12px;
  background-color: #0077b6;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

/* === HAMBURGER ICON === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #fff;
  width: 100%;
  border-radius: 2px;
}



        .hamburger.open span:nth-child(1) {
            transform: translateY(11px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-11px) rotate(-45deg);
        }
        .hamburger.open span {
            background: #ffe100;
            filter: drop-shadow(0 0 4px #ffe100);
        }


        /* Navigation Links (Desktop First) */
        .nav-links {
            list-style: circle;
            display: flex;
            gap: 12px;
            margin: 0;
            padding: 0;
            align-items: left;
            position: static; /* Default for desktop */
            background: none;
            height: auto;
            box-shadow: none;
            z-index: 1200;
            transition: none; /* No transition for desktop to avoid interference */
        }

        .nav-links li {
            position: relative;
            justify-content: left;
            padding:5px 5px;
        }

        .nav-links a {
            text-decoration: row;
            text-align: left;
            color: white;
            padding: 6px 12px;
            display: flex;
            text-size-adjust: 2rm;
            border-radius: 4px;
            font-size: 1rem;
            transition: background-color 0.2s, box-shadow 0.2s, color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a:focus {
            background-color: #000000;
            color: #ffe100;
            box-shadow: 0 2px 12px rgba(20, 13, 80, 0.13);
        }

        /* Dropdown Styling (Desktop First) */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffe100; /* Yellow background for dropdown */
            transition: opacity 0.25s, transform 0.25s;
            opacity: 0;
            pointer-events: none;
            display: flex; /* Flex for vertical stacking of dropdown items */
            flex-direction: column;
            z-index: 900;
            border-radius: 10px;
            min-width: 180px;
            box-shadow: 0 6px 24px rgba(20, 13, 80, 0.10);
            transform: translateY(-10px);
        }

        .dropdown.open > .dropdown-menu {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .dropdown-menu li {
            background-color: #0e0e8f; /* Dark blue background for dropdown items */
            position: relative;
            border: none;
            transition: background 0.2s;
        }

        .dropdown-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 16px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
            text-align: left; /* Ensure alignment */
        }

        .dropdown-menu a:hover,
        .dropdown-menu a:focus {
            background: #d8d100; /* Lighter yellow on hover */
            color: #0e0e8f; /* Dark blue text on hover */
        }

        /* Nested Dropdown Styling (Desktop First) */
        .dropdown-menu li .dropdown-menu {
            left: 100%; /* Position to the right of parent */
            top: 0;
            position: absolute;
            opacity: 0;
            pointer-events: none;
            min-width: 180px;
            border-radius: 10px;
            box-shadow: 0 6px 24px rgba(20, 13, 80, 0.10);
            transform: translateY(-10px);
            transition: opacity 0.25s, transform 0.25s;
        }

        .dropdown-menu li:hover > .dropdown-menu,
        .dropdown-menu li:focus-within > .dropdown-menu {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        /* Search Bar (Desktop First) */
        .navbar-search-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            margin-left: auto; /* Pushes search to the right on desktop */
            max-width: 260px;
            height: 40px;
            transition: max-width 0.3s;
        }

        #navbar-search-box {
            padding: 6px 10px;
            border: 1px solid #ccc;
            border-radius: 4px 0 0 4px;
            width: 100%;
            font-size: 1rem;
            height: 36px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        #navbar-search-box:focus {
            border-color: #004cff;
            box-shadow: 0 0 0 2px #004cff33;
        }

        #navbar-search-button {
            padding: 6px 10px;
            border: none;
            background: #000000;
            color: #ffffff;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 1rem;
            height: 36px;
            transition: background 0.2s;
        }

        #navbar-search-button:hover,
        #navbar-search-button:focus {
            background: #ffe100;
            color: #140d50;
        }

        /* Suggestions List for Search */
        .suggestions-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: absolute;
            top: 100%; /* Position below the search box */
            left: 0;
            right: 0;
            background-color: #fff;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 4px 4px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-height: 200px;
            overflow-y: auto;
            display: none; /* Hidden by default */
            z-index: 1000;
        }

        .suggestions-list li {
            padding: 8px 10px;
            cursor: pointer;
            color: #333;
            font-size: 0.9rem;
        }

        .suggestions-list li:hover {
            background-color: #e5ff00;
        }

        /* Search Toast Message */
        .search-toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            z-index: 2000;
            display: none; /* Hidden by default */
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .search-toast.success {
            background-color: #28a745;
        }

        .search-toast.error {
            background-color: #dc3545;
        }

        .search-toast.show {
            opacity: 1;
        }

        
        /* ------------------------------------------- */
        /* Responsive: Mobile View (max-width: 900px) */
        /* ------------------------------------------- */
        @media (max-width: 900px) {
  

            /* Off-canvas Navigation Menu */
            .nav-links {
                flex-direction: column;
                align-items: flex-start; /* Align links to the left */
                position: fixed;
                top: 0;
                right: -100vw; /* Hidden off-screen */
                width: 80vw; /* Take 80% of viewport width, adjust as needed */
                max-width: 300px; /* Max width for larger mobile devices */
                height: 100vh; /* Full viewport height */
                background: linear-gradient(180deg, #140d50 80%, #140a6c 100%);
                padding: 60px 0 20px 0; /* Space for fixed header, plus bottom padding */
                gap: 0; /* Reset gap, use padding on li/a */
                transition: right 0.4s cubic-bezier(.77, 0, .18, 1); /* Smooth slide-in */
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.4);
                z-index: 1200;
                overflow-y: auto; /* Enable vertical scrolling */
                -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
            }

            .nav-links.open {
                right: 0; /* Slide in */
            }

            .nav-links li {
                width: 100%; /* Ensure list items take full width */
                border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separator for clarity */
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                padding: 12px 20px; /* Larger tap area */
                text-align: left; /* Align text left */
                font-size: 2rem; /* Slightly larger font */
                border-radius: 0; /* No rounded corners for full-width links */
            }

            .nav-links a:hover,
            .nav-links a:focus {
                background-color: #0e0e8f; /* Change hover/focus background */
                color: #ffe100;
                box-shadow: none; /* No shadow */
            }

            /* Mobile Dropdown Overrides */
            .dropdown-menu {
                position: static; /* Stack dropdowns vertically */
                opacity: 1; /* Always visible when parent is open */
                pointer-events: auto; /* Allow clicks */
                transform: none; /* Reset transform */
                background-color: #1a125a; /* Slightly different background for nested */
                box-shadow: none;
                border-radius: 0;
                min-width: unset; /* Remove min-width constraint */
                width: 100%;
                padding-left: 20px; /* Indent nested items */
            }

            .dropdown-menu li .dropdown-menu {
                padding-left: 40px; /* Further indent for deeper nesting */
            }

            /* Ensure dropdown items are always visible when parent is "open" */
            .dropdown.open > .dropdown-menu {
                display: flex; /* Show the dropdown menu */
                opacity: 1;
                pointer-events: auto;
                transform: none;
            }

            /* Hide nested dropdowns by default, only show when their parent is open */
            .dropdown-menu li .dropdown-menu {
                display: none;
            }

            .dropdown-menu li.dropdown.open > .dropdown-menu {
                display: flex;
            }

            /* No hover effects on mobile dropdowns, rely on click */
            .dropdown-menu li:hover > .dropdown-menu,
            .dropdown-menu li:focus-within > .dropdown-menu {
                opacity: 1;
                pointer-events: auto;
                transform: none;
            }

            /* Remove pointer events from top-level dropdowns that are not open */
            .nav-links .dropdown:not(.open) > .dropdown-menu {
                pointer-events: none;
            }
        }












/* Welcome Section */
.welcome-section {
  background: linear-gradient(to right, #0077b6, #000000);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  border-bottom: 6px solid #ffffff;
}
.welcome-section h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 1px 1px 0 #ffffff;
}
.welcome-section .highlight {
  color: #ffffff;
}
.welcome-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}


/* Responsive */
@media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar-links {
      flex-direction: column;
      margin-top: 10px;
      gap: 10px;
    }
   }




















/* ========================
   HERO SECTION
   ======================== */
.hero {
    background: linear-gradient(135deg, #0077b6, #071d21); /* Blue to dark blue gradient */
    color: #ffffff;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Full viewport height */
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff; /* Ensure white text on dark background */
}

.hero-description {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 20px;
    color: #e0f2f7; /* Lighter blue for description */
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 700px; /* Ensure image doesn't get too large */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ========================
   RESPONSIVE MEDIA QUERIES
   ======================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 4px;
        height: 52px;
    }
    .navbar-container {
        flex-wrap: wrap;
        padding: 0 2px;
        min-height: 52px;
        height: 52px;
    }
    .nav-links {
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .navbar-search-wrapper {
        max-width: 160px;
        padding: 0 0 0 8px;
        height: 36px;
    }
    #navbar-search-box,
    #navbar-search-button {
        height: 32px;
        font-size: 0.95rem;
    }
    /* Hero section adjustments for tablet */
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
}

/* Mobile (max-width: 900px) */
@media (max-width: 900px) {
    .navbar {
        height: 50px; /* Slightly smaller on mobile */
        padding: 0 2vw; /* Use viewport width for padding */
    }

    .navbar-container {
        flex-wrap: nowrap; /* Prevent wrapping of top bar items */
        justify-content: space-between; /* Distribute logo, search, hamburger */
        height: 100%; /* Ensure it fills navbar height */
        padding: 0; /* Remove internal padding */
    }

    .navbar-logo {
        margin-right: auto; /* Pushes other items to the right */
        flex-shrink: 0; /* Prevent logo from shrinking */
    }

    .hamburger {
        display: flex !important; /* Show hamburger on mobile */
        order: 2; /* Position hamburger to the right of search */
    }

    .navbar-search-wrapper {
        order: 1; /* Position search to the left of hamburger */
        margin-left: 0; /* Reset desktop margin */
        max-width: calc(100% - 100px); /* Adjust max-width to allow space for logo and hamburger */
        width: 100%; /* Allow it to take up available space */
        padding-right: 5px; /* Small space before hamburger */
    }

    #navbar-search-box {
        border-radius: 4px; /* Make it fully rounded, no need for combined with button */
    }

    #navbar-search-button {
        border-radius: 4px; /* Make it fully rounded, no need for combined with box */
        padding: 6px 8px; /* Smaller padding for button */
    }

    /* Off-canvas Navigation Menu */
    .nav-links {
        flex-direction: column;
        align-items: flex-start; /* Align links to the left */
        position: fixed;
        top: 0;
        right: -100vw; /* Hidden off-screen */
        width: 80vw; /* Take 80% of viewport width, adjust as needed */
        max-width: 300px; /* Max width for larger mobile devices */
        height: 100vh; /* Full viewport height */
        background: linear-gradient(180deg, #140d50 80%, #140a6c 100%);
        padding: 60px 0 20px 0; /* Space for fixed header, plus bottom padding */
        gap: 0; /* Reset gap, use padding on li/a */
        transition: right 0.4s cubic-bezier(.77, 0, .18, 1); /* Smooth slide-in */
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.4);
        z-index: 1200;
        overflow-y: auto; /* Enable vertical scrolling */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    }

    .nav-links.open {
        right: 0; /* Slide in */
    }

    .nav-links li {
        width: 100%; /* Ensure list items take full width */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separator for clarity */
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 12px 20px; /* Larger tap area */
        text-align: left; /* Align text left */
        font-size: 1.1rem; /* Slightly larger font */
        border-radius: 0; /* No rounded corners for full-width links */
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background-color: #0e0e8f; /* Change hover/focus background */
        color: #ffe100;
        box-shadow: none; /* No shadow */
    }

    /* Mobile Dropdown Overrides */
    .dropdown-menu {
        position: static; /* Stack dropdowns vertically */
        opacity: 1; /* Always visible when parent is open */
        pointer-events: auto; /* Allow clicks */
        transform: none; /* Reset transform */
        background-color: #1a125a; /* Slightly different background for nested */
        box-shadow: none;
        border-radius: 0;
        min-width: unset; /* Remove min-width constraint */
        width: 100%;
        padding-left: 20px; /* Indent nested items */
    }

    .dropdown-menu li .dropdown-menu {
        padding-left: 40px; /* Further indent for deeper nesting */
    }

    /* Ensure dropdown items are always visible when parent is "open" */
    .dropdown.open > .dropdown-menu {
        display: flex; /* Show the dropdown menu */
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    /* Hide nested dropdowns by default, only show when their parent is open */
    .dropdown-menu li .dropdown-menu {
        display: none;
    }

    .dropdown-menu li.dropdown.open > .dropdown-menu {
        display: flex;
    }

    /* No hover effects on mobile dropdowns, rely on click */
    .dropdown-menu li:hover > .dropdown-menu,
    .dropdown-menu li:focus-within > .dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    /* Remove pointer events from top-level dropdowns that are not open */
    .nav-links .dropdown:not(.open) > .dropdown-menu {
        pointer-events: none;
    }

    /* Hero section adjustments for mobile */
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .hero-image img {
        max-width: 100%;
    }
}










   /* Admission Modal */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            display: none; /* initially hidden */
            justify-content: center;
            align-items: center;
            z-index: 800;
            padding: 1rem;
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .modal-overlay.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: #fff;
            padding: 2rem;
            border-radius: 12px;
            width: 100%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .close-btn {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #333;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: #0077b6;
        }

        .modal-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-bottom: 1rem;
        }

        .modal-logo img {
            max-width: 150px;
            height: auto;
            object-fit: contain;
        }

        .modal-title {
            text-align: center;
            font-size: 1.6rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: #03045e;
        }

        .vertical-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .input-group {
            display: flex;
            align-items: center;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 0.5rem;
            background-color: #f9f9f9;
        }

        .input-group i {
            margin-right: 0.75rem;
            color: #0077b6;
        }

        .input-group input,
        .input-group select {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
        }

        .vertical-form button {
            background-color: #0077b6;
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .vertical-form button:hover {
            background-color: #00b4d8;
        }

        #openAdmissionBtn {
            position: fixed;
            bottom: 20px;
            right: 20px; /* Adjusted to be separate from chatbot toggle */
            background-color: #0077b6;
            color: white;
            border: none;
            padding: 0.6rem 1rem;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 6px 15px rgba(0, 119, 182, 0.5);
            display: none; /* hidden initially */
            z-index: 1100;
            transition: background-color 0.3s ease;
        }
        /* Adjust position for #openAdmissionBtn to not overlap with #botToggle */
        @media (min-width: 501px) {
            #openAdmissionBtn {
                right: 170px; /* Adjust based on #botToggle width + margin */
            }
        }


        #openAdmissionBtn:hover {
            background-color: #00b4d8;
        }

        #admissionButtonWrapper {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
            background-color: #0077b6;
            color: white;
            border: none;
            padding: 12px 24px;
            font-size: 18px;
            border-radius: 6px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: background-color 0.3s ease;
        }

        #admissionButtonWrapper:hover {
            background-color: #005f86;
        }

        .modal-overlay {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }

        .thank-you-message {
            text-align: center;
            font-size: 1.25rem;
            color: #0077b6;
            margin-top: 1rem;
            display: none;
        }

        .vertical-form button:disabled {
            background-color: #90e0ef;
            cursor: not-allowed;
        }

        #openAdmissionBtn {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        #openAdmissionBtn.show {
            opacity: 1;
            pointer-events: auto;
        }

        /* Responsive adjustments for modal */
        @media (max-width: 480px) {
            .modal-content {
                padding: 1.5rem 1rem;
            }

            .modal-title {
                font-size: 1.3rem;
            }

            .modal-logo img {
                max-width: 120px;
            }

            #openAdmissionBtn {
                padding: 0.5rem 0.8rem;
                font-size: 0.9rem;
            }
        }




/* Students Visited Section */
.students-visited {
  background: linear-gradient(135deg, #03045e, #0077b6);
  padding: 100px 20px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.students-visited::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00b4d8;
  filter: blur(120px);
  opacity: 0.3;
  border-radius: 50%;
  top: -100px;
  right: -150px;
  z-index: 0;
}

.students-container {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.visited-title {
  font-size: 2.8rem;
  color: #caf0f8;
  margin-bottom: 10px;
}

.visited-subtext {
  font-size: 1.2rem;
  color: #90e0ef;
  margin-bottom: 40px;
}

.visited-counter {
  font-size: 4rem;
  font-weight: bold;
  color: #ffffff;
  animation: fadeIn 1s ease-in-out;
}

.visited-number {
  display: inline-block;
  font-size: 5rem;
  color: #fff;
  text-shadow: 0 0 20px #00b4d8;
}

.visited-label {
  display: block;
  font-size: 1.4rem;
  color: #f0f0f0;
  margin-top: 10px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .visited-title { font-size: 2.2rem; }
  .visited-number { font-size: 3.5rem; }
  .visited-subtext, .visited-label { font-size: 1rem; }
}



/* Our Programs Section */
.section-programs {
  padding: 60px 20px;
  background-color: #273037; /* Dark background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
}

/* Container for padding and optional background */
.container-programs {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Title */
.section-programs h1 {
  color: #ffffff;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 0.3em;
  font-weight: 700;
}

/* Subtitle */
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.5;
}

/* Grid layout for cards */
.grid-programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Individual Card */
.card-program {
  background: #0077b6; /* ITACAREDI Blue */
  color: #ffffff;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(9, 52, 76, 0.25);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

/* Emoji / Icon Styling */
.card-program h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Hover Effect */
.card-program:hover {
  background: #000000;
  transform: translateY(-8px);
  box-shadow: 0 14px 36px rgba(2, 48, 78, 0.25);
}

/* Responsive Design */
@media (max-width: 600px) {
  .section-programs h1 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .card-program h3 {
    font-size: 1.05rem;
  }
}






/* Career & Placement Support Section */

.section-career {
  padding: 60px 20px;
  background-color: #040f4e;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.section-career h2 {
  color: #ffffff;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 0.3em;
  font-weight: 700;
}
.section-career .section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.4;
}

.grid-career {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.grid-career :hover {
  transform: translateY(-8px);
  transition: box-shadow 0.3s ease, transform 0.6s ease;
  color: rgb(255, 255, 255);
}

.card-career {
  background: rgb(0, 0, 0);
  border-radius: 14px;
  padding: 2rem 2rem;
  box-shadow: 0 6px 20px rgba(2, 48, 78, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.card-career h3 {
  color: #0055ff;
  margin-bottom: 0.6rem;
  font-weight: 700;
  font-size: 1.5rem;
}
.card-career p {
  color: #fffb00;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0;
}

.card-career:hover {
  box-shadow: 0 14px 36px rgba(2, 48, 78, 0.25);
  transform: translateY(-8px);
}




















/* /govtjob and entrnce exam / Franchise Section */
.franchise {
  background-color: #063c9a;
  padding: 4rem 2rem;
}
.franchise-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.franchise-text {
  flex: 1 1 500px;
  color: #ffffff;
}
.franchise-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.franchise-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.franchise-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
.franchise-text ul li {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.franchise-text .btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #0000ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.franchise-text .btn-primary:hover {
  background-color: #03045e;
}
.franchise-image {
  flex: 1 1 400px;
  text-align: center;
}
.franchise-image img {
  max-width: 100%;
  border-radius: 12px;
}




/* Testimonials Section */
.testimonials-section {
  background: #0b7c8b;
  padding: 50px 20px;
  text-align: center;
}
.testimonials-section h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 30px;
}
.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: auto;
    padding: 0 20px;
    justify-items: center;
    cursor: pointer;
}

.testimonial-cards :hover {
  transform: translateY(-8px);
  transition: box-shadow 0.3s ease, transform 0.6s ease;
  color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .testimonial-cards {
    flex-direction: row;
    justify-content: center;
  }
}
.testimonial-card {
  background: white;
  padding: 20px;
  border-left: 5px solid #e1ff00;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}
.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-weight: bold;
  color: #b6b300;
}
.testimonial-card .designation {
  font-size: 0.9rem;
  color: #555;
}





/* Newsletter Section */
.newsletter-section {
  background: #093197;
  text-align: center;
  padding: 50px 20px;
}
.newsletter-section h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.newsletter-section p {
  color: #ffffff;
  margin-bottom: 20px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}
.newsletter-form input {
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #0077b6;
  border-radius: 5px;
}
.newsletter-form button {
  padding: 12px;
  background-color: #0077b6;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}
.newsletter-form button:hover {
  background-color: #00b4d8;
}




/* E-Store Section */
.estore {
  background-color: #0e5b72;
  padding: 4rem 2rem;
}
.estore-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.estore-text {
  flex: 1 1 500px;
  color: #ffffff;
}
.estore-text h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.estore-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.estore-text .btn-primary {
  background-color: #00b4d8;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.estore-text .btn-primary:hover {
  background-color: #0077b6;
}
.estore-image {
  flex: 1 1 400px;
  text-align: center;
}
.estore-image img {
  max-width: 100%;
  border-radius: 12px;
}




/* Gallery Section */
.gallery {
  background-color: #1200d8;
  padding: 4rem 2rem;
  text-align: center;
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}
.gallery .section-subtitle {
  color: #ffffff;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}




/* Corporate Partners Slider */
.image-slider {
  overflow: hidden;
  width: 100%;
  background-color: #0f898b;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.slider-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  gap: 20px;
  border-radius: 10px;
}

.slider-container h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: scrollSlider 30s linear infinite;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  width: max-content;
}
.slider-track img {
  width: 350px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease;
}
.slider-track img:hover {
  transform: scale(1.05);
}


@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .slider-track {
    gap: 1rem;
  }
  .slider-track img {
    height: 150px;
  }
}


/* Why Choose Us */
/* Section Wrapper */
.middle-section {
    background: linear-gradient(135deg, #0022ff, #11424b);
    color: #fff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
  }
  
  /* Container */
  .middle-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Text Block */
  .middle-text {
    flex: 1 1 50%;
    padding: 20px;
    justify-content: center;
  }
  
  .middle-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    justify-content: center;;
    color: #caf0f8;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  .middle-text .highlight {
    color: #caf0f8;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    justify-content: center;
    text-align: center;
  }
  
  .middle-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
  }
  


  /* Button */
  .btn-learn-more {
    display: inline-block;
    background-color: #03045e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .btn-learn-more:hover {
    background-color: #023e8a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  
  /* Image Block */
  .middle-image-wrapper {
    flex: 1 1 1;
    padding: 22px;
    text-align: center;
  }
  
  .middle-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(1);
    transition: transform 0.4s ease;
    
  }
  
  .middle-image:hover {
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .middle-container {
      flex-direction: column;
      text-align: center;
    }
  
    .middle-text, .middle-image-wrapper {
      flex: 1 1 100%;
    }
  
    .middle-text h2 {
      font-size: 2rem;
    }
  }
  



/* Video Section */









.partners-section {
    padding: 60px 20px;
    background-color: #f1f6fa;
    text-align: center;
  }

  .partners-section h2 {
    font-size: 30px;
    color: #003566;
    margin-bottom: 10px;
  }

  .partners-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
  }

  .partners-grid img {
    width: 100%;
    max-width: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .partners-grid img:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .partners-section h2 {
      font-size: 24px;
    }

    .partners-section p {
      font-size: 14px;
    }
  }






/* Vertical Form & Input Group */

.vertical-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.vertical-form input,
.vertical-form select,
.vertical-form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}
.vertical-form button {
  padding: 0.8rem;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}
.vertical-form button:hover {
  background-color: #1a252f;
}
.input-group {
  position: relative;
}
.input-group i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #888;
}
.input-group input,
.input-group select {
  padding-left: 2.2rem;
  width: 100%;
}













/* Footer Image Section */
.footer-image-section {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.footer-image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.footer-image-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-image-section p {
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: linear-gradient(to right, #03045e, #0077b6);
  color: #caf0f8;
  padding: 3rem 1rem 1rem;
}
.footer-wrapper {
  max-width: 1300px;
  margin: auto;
}
.footer-content {
  display: flex;
  flex-wrap: none;
  justify-content: space-between;
  gap: 5rem;
}
.footer-box {
  flex: 1 1 250px;
  min-width: 200px;
}
.footer-logo {
  max-width: 80px;
  margin-bottom: 2rem;
}
.footer-box h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #ffffff;
}
.footer-box ul {
  list-style: none;
  padding: 0;
}
.footer-box ul li {
  margin-bottom: 0.5rem;
}
.footer-box ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.footer-box ul li a:hover {
  text-decoration: none;
}
.footer-socials a {
  margin-right: 20px;
}
.footer-socials img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}
.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  margin-top: 5rem;
  border-top: 1px solid #ffd500;
  font-size: 0.85rem;
}


/* ----------- Responsive Design Enhancements ----------- */

/* Mobile (up to 600px) */
@media (max-width: 600px) {
  .navbar-container,
  .footer-content,
  .hero-container,
  .franchise-container,
  .estore-container,
  .middle-container {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
    padding: 10px !important;
  }

  .navbar-search-wrapper {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }

  .nav-links,
  .navbar-links {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
  }

  .hero-title,
  .placement h1,
  .placement h2,
  .testimonials-section h2 {
    font-size: 1.5rem !important;
  }

  .hero-image img,
  .franchise-image img,
  .estore-image img,
  .gallery-grid img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .placement-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .footer-content {
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .footer-box {
    min-width: unset !important;
  }

  .modal-content {
    padding: 1rem !important;
    max-width: 98vw !important;
  }
}

/* Tablet/iPad (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .navbar-container,
  .footer-content,
  .hero-container,
  .franchise-container,
  .estore-container,
  .middle-container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
    padding: 20px;
  }

  .nav-links,
  .navbar-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    justify-content: center;
  }

  .placement-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-box {
    min-width: unset;
  }
}

/* Laptop/Desktop (1025px and up) */
@media (min-width: 1025px) {
  .navbar-container,
  .footer-content,
  .hero-container,
  .franchise-container,
  .estore-container,
  .middle-container {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    padding: 30px;
  }

  .nav-links,
  .navbar-links {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }

  .placement-grid,
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .footer-content {
    flex-direction: row;
    gap: 5rem;
  }
}

/* General: Make images and containers responsive */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container, .placement-container, .gallery-container, .footer-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}