body {
            font-family: "Times New Roman", serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }
        
        /* Header Styles */
        .header-container {
            background-color: white;
            border-bottom: 1px solid #ddd;
        }
        
        .top-bar {
            background-color: black;
            color: white;
            padding: 8px 0;
        }
        
        .top-content {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 0 15px;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: center;
            margin-bottom: 10px;
        }
        
        .fbi-logo {
            line-height: 1;
            text-align: center;
        }
        
        .fbi-logo h1 {
            font-size: 36px;
            font-weight: bold;
            margin: 0;
            color: white;
        }
        
        .fbi-logo h2 {
            font-size: 14px;
            font-weight: normal;
            margin: 0;
            letter-spacing: 1.2px;
            color: white;
        }
        
        .fbi-logo h3 {
            font-size: 14px;
            font-weight: normal;
            margin: 0;
            letter-spacing: 1.2px;
            color: white;
        }
        
        .utility-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            gap: 15px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .social-links a {
            color: white;
            text-decoration: none;
            font-size: 30px;
        }
        
        .search-box {
            display: flex;
            align-items: center;
        }
        
        .search-box input {
            padding: 5px;
            font-size: 12px;
            border: none;
            width: 180px;
            max-width: 100%;
        }
        
        .search-box button {
            background-color: black;
            color: white;
            border: none;
            padding: 5px 10px;
            margin-left: 5px;
            cursor: pointer;
        }
        
        /* Mobile Menu Button */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }
        
        .main-nav {
            background-color: black;
            padding: 12px 0;
            overflow-x: auto;
            white-space: nowrap;
        }
        
        .nav-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .main-nav a {
            font-weight: bold;
            text-decoration: none;
            color: white;
            font-size: 14px;
            text-transform: uppercase;
            margin-right: 15px;
            letter-spacing: 0.5px;
            display: inline-block;
        }
        
        /* Mobile Dropdown Menu */
        .mobile-menu {
            display: none;
            width: 100%;
            background-color: black;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu a {
            display: block;
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Slideshow Styles */
        .slideshow-container {
            position: relative;
            background: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .slide {
            display: none;
            padding: 0;
            text-align: center;
            position: relative;
        }
        
        .slide-img {
            width: 100%;
            height: auto;
            max-height: 700px;
            object-fit: cover;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 15px;
            text-align: center;
        }
        
        .slide .slide-content h1 {
            font-size: 2rem;
            color: white;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .slide p {
            font-size: 20px;
            line-height: 1.4;
            margin-bottom: 15px;
        }
        
        .divider {
            border-top: 2px solid #cc0000;
            width: 60px;
            margin: 0 auto 10px auto;
        }
        
        .slide a {
            display: inline-block;
            background-color: #cc0000;
            color: white;
            padding: 6px 15px;
            text-decoration: none;
            font-weight: bold;
            font-size: 25px;
        }
        
        .fade {
            animation-name: fade;
            animation-duration: 1.5s;
        }

        /* Leadership Section Styles */
        .leadership-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 15px;
        }
        
        .leadership-container h1 {
            padding-top: 50px;
            font-size: 34px;
            color: #1a3e6f;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .leadership-card {
            background: white;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .leadership-image {
            height: 400px;
            position: relative;
            overflow: hidden;
        }
        
        .leadership-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 62, 111, 0.8);
            color: white;
            padding: 15px;
            text-align: center;
        }
        
        .image-title h3 {
            font-size: 20px;
            margin: 0 0 5px 0;
            color: white;
        }
        
        .image-title p {
            font-size: 18px;
            margin: 0;
            font-weight: bold;
            color: white;
        }
        
        /* I Want To Section Styles */
        .iwantto-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 15px;
            padding-top: 50px;
        }
        
        .iwantto-container h1 {
            font-size: 34px;
            color: #1a3e6f;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .iwantto-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .iwantto-card {
            background: white;
            border-radius: 4px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-left: 4px solid #cc0000;
        }
        
        .iwantto-card h3 {
            color: #1a3e6f;
            font-size: 20px;
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        .iwantto-card ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        
        .iwantto-card li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .iwantto-card li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .iwantto-card a {
            color: #1a3e6f;
            text-decoration: none;
            font-size: 16px;
            display: block;
            padding: 5px 0;
        }
        
        .iwantto-card a:hover {
            color: #cc0000;
            text-decoration: underline;
        }

        
        /* Leadership Section Styles */
        .leadership-containerr {
            max-width: 1500px;
            margin: 40px auto;
            padding: 0 15px;
            padding-bottom: 50px;
        }
        
        .leadership-containerr h1 {
            padding-top: 50px;
            font-size: 34px;
            color: #1a3e6f;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .leadership-cardd{
            border-radius: 50px;
        }
        
        .leadership-imagee {
            height: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 2px;
        }
        
        .leadership-imagee img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 62, 111, 0.8);
            color: white;
            padding: 15px;
            text-align: center;
        }
        
        .image-title h3 {
            font-size: 20px;
            margin: 0 0 5px 0;
            color: white;
        }
        
        .image-title p {
            font-size: 18px;
            margin: 0;
            font-weight: bold;
            color: white;
        }
        
        @media (max-width: 768px) {
            .iwantto-grid {
                grid-template-columns: 1fr;
            }
        }

        @keyframes fade {
            from {opacity: .4}
            to {opacity: 1}
        }
        
        /* Responsive Breakpoints */
        @media (min-width: 768px) {
            .logo-section {
                width: auto;
                justify-content: flex-start;
                margin-bottom: 0;
            }
            
            .utility-section {
                width: auto;
                justify-content: flex-end;
            }
            
            .slide h1 {
                font-size: 28px;
            }
            
            .slide p {
                font-size: 16px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .main-nav a {
                margin-right: 20px;
            }
        }
        
        @media (max-width: 600px) {
           
            /* Mobile Menu Styles */
            .menu-toggle {
                display: block;
            }
            
            .nav-container a {
                display: none;
            }
            
            .fbi-logo h1 {
                font-size: 28px;
            }
            
            .fbi-logo h2, .fbi-logo h3 {
                font-size: 12px;
            }
            
            .social-links {
                gap: 10px;
            }
            
            .search-box input {
                width: 120px;
            }
            
            .slide h1 {
                font-size: 20px;
            }
            
            .leadership-grid {
                grid-template-columns: 1fr;
            }
            
            .leadership-image {
                height: 250px;
            }
            
            .slide-content {
                position: relative;
                background: rgba(0,0,0,0.9);
            }
            
            .slide-img {
                max-height: 400px;
            }
        }
        
            /* Footer Styles */
        .footer-container {
            background-color: black;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-column ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #3988ce;
            text-decoration: none;
            font-size: 20px;
        }

        .footer-column a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding: 20px 15px 0;
            border-top: 1px solid rgba(255,255,255,0.2);
            text-align: center;
            font-size: 14px;
        }

        .footer-logo {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .footer-address {
            font-size: 12px;
            margin-top: 20px;
        }

        @media (max-width: 900px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-column a {
                font-size: 16px;
            }
        }

        .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;

}

.card img {
  width: 80%;
  height: 80%;
  display: block;
}

.case-of-week img {
  max-width: 100%;
  height: auto;
}
.con{
    padding-bottom: 50px;
}
.fbi-case-section {
  max-width: 1000px;
  margin: 2rem auto;
  font-family: Arial, sans-serif;
  color: #333;
}

.fbi-case-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.fbi-case-section p {
  font-size: 1rem;
  line-height: 1.6;
}

.caption {
  font-size: 14px;
  margin-top: 8px;
  color: #1a57b2;
}

.case-of-week {
  margin-left: 40px;
  width: 300px;
  background-color: #f0f4f8;
  padding: 15px;
  border: 1px solid #ccc;
}

.case-of-week h2 {
  font-size: 18px;
  margin-bottom: 0;
}

.case-of-week h3 {
  color: #1a57b2;
  margin: 5px 0;
}

.case-of-week img {
  width: 100%;
  margin-bottom: 10px;
}