+
    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    all: unset;
}
.top-navbar {
  flex-wrap: wrap;
}

 

.navbar {
    font-family: 'Montserrat', sans-serif;

  }

  .nav-link {
    color: white !important; /* White color for links */
    margin-left: 7px; /* Add spacing between links */
    text-decoration: none; /* Remove underline by default */
    list-style: none;
    padding: 1.5px; /* Add spacing between links */
   /* transition: color 0.3s ease;*/
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    display: inline-block; 
  }
  .nav-link:not(:last-child)::after {
    /* Adds vertical bar */
    color: rgb(142, 8, 8); /* Sets color of the bar */
    margin-left: 15px; /* Adjust spacing after the text */
}
.nav-link:hover{
    text-decoration: none; /* Ensure no underline on hover */
    list-style: none; /* Ensure no bullets on hover */
    color: red;
}
  .nav-item {
    list-style: none !important; /* Force removal of bullets */
    padding: 0; /* Ensure no extra padding around items */
    margin: 0; /* Ensure no extra margin around items */
}


  .nav {
    display: flex;
    justify-content: flex-end;  /* Align links to the right */
  }

div{
    unicode-bidi: isolate; 
}
.bg-dark{
    --bs-bg-opacity: 1;
    background-color: rgb(157, 39, 39); 
    padding: 0; 
}

#top{
    margin: 0;
    padding: 0;
    background-size: cover;
    display: block;
}
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    gap: 1px;
  }

  .nav-link {
    padding: 2px 4px;       /* Slight compact padding */
    font-size: 12px;        /* Smaller text for mobile view */
    text-align: center;     /* Center-align text */
    width: auto;
    line-height: 1.2;       /* Tighten vertical spacing */
  }
}




/* navbar finished */
/* Your Existing Code (unchanged) */
.top-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 8px 8px;
}

.navbar-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  margin: 0 20px;
}

.navbar-left-text {
  display: flex;
  flex-direction: column;
}

.title1 {
  font-size: 30px;
  font-weight: bold;
  color: #0066cc;
}

.title2 {
  font-size: 17px;
  font-style: italic;
  color: #2e2b2b;
  margin-top: 2px;
}

.navbar-right-content {
  display: flex;
  align-items: center;
  gap: 1px;
  padding-left: 2px;
}

.email-container {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-right: 50px;
}

.email-icon {
  margin-right: 5px;
  color: #0066cc;
}

.know-police-btn {
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 7px 14px;
  font-size: 18px;
  border-radius: 4px;
  margin-right: 450px;
  cursor: pointer;
}

.know-police-btn:hover {
  background: #0055aa;
}

.logo-right img {
  height: 70px;
}

.logo-left img {
  height: 80px;
}
@media (max-width: 1200px) {

  .title1 {
    font-size: 26px;
  }

  .title2 {
    font-size: 15px;
  }

  .logo-left img {
    height: 70px;
  }

  .logo-right img {
    height: 60px;
  }

  .email-container {
    font-size: 18px;
    margin-right: 20px;
  }

  .know-police-btn {
    font-size: 16px;
    padding: 6px 12px;
    margin-right: 0;       /* 🔑 remove fixed spacing */
  }
}
@media (max-width: 992px) {

  .top-navbar {
    flex-wrap: wrap;
    padding: 8px 12px;
  }

  .navbar-center {
    margin: 0 10px;
  }

  .title1 {
    font-size: 22px;
  }

  .title2 {
    font-size: 14px;
  }

  .email-container {
    font-size: 16px;
    margin-right: 10px;
  }

  .know-police-btn {
    font-size: 15px;
    padding: 6px 10px;
  }

  .logo-left img,
  .logo-right img {
    height: 55px;
  }
}


/* ✅ Mobile View (phones only) */
@media (max-width: 768px) {

  /* Hide right side completely */
  .navbar-right-content {
    display: none !important;
  }

  /* Hide right logo if any */
  .logo-right {
    display: none !important;
  }

  /* Keep navbar clean */
  .top-navbar {
    flex-direction: row;
    align-items: center;
    padding: 6px 10px;
  }

  /* Left logo */
  .logo-left img {
    height: 50px;
  }

  /* Center titles */
  .navbar-center {
    margin-left: 10px;
  }

  .title1 {
    font-size: 28px;
    display: block;
  }

  .title2 {
    font-size: 14px;
    display: block;
  }
}




/* finish of logo and */

/* Main Menu Style */
#mainav {
    background-color: #3173d0; /* Dark background color */
    padding: 0px;
    
    
}

.menu {
    list-style: none;
    margin-left: 10px;
    padding: 0;
    display: flex; /* Flexbox for horizontal layout */
}

.menu li {
    position: relative; /* To make dropdown position relative to parent */
    margin-right: 30px;
  
     
}

.active{
    background-color: rgb(218, 158, 158);
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effects for menu items */
.menu a:hover {
    background-color:  #3173d0;
    color: black; /* Red color on hover */
}
/* Menu Button (only visible on mobile) */
.menu-button {
  display: none;
  background-color: rgb(95, 89, 89);
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
}
/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
  /* Adjust Image Section */
  .image {
      padding: 10px 0; /* Add padding for spacing */
      margin-left: -80px;
  }

  .image img {
      max-width: 450px; /* Make image responsive */
      height: auto; /* Maintain aspect ratio */
      max-height: none; /* Allow image to resize properly */
  }

  #mainav {
  position: relative;   /* ✅ Needed for absolute children like menu-button */
  z-index: 1000;
}


.menu-button {
  display: inline-block;
  color: black;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;               /* ✅ Vertically center */
  left: 10px;             /* ✅ Slight padding from left */
  transform: translateY(-50%);  /* ✅ Perfect vertical center */
  z-index: 1001;
}


  /* Hide Menu by Default on Mobile */
  .menu {
      display: none; /* Hide menu items initially */
  }

  /* Show Menu on Button Click */
  .menu-button.active + .menu {
      display: flex; /* Show menu when button is active */
  }
}



/* Dropdown menu styles */
.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color:  #3173d0;
    min-width: 200px;
    list-style: none;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    text-align: center;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    /*z-index: 1000; /* Make sure the dropdown is on top */
}

.dropdown a{
    text-align: center; 
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content a {
    padding: 10px;
    color: white;
    text-decoration: none;
    display: block;       
}

/* Dropdown hover effect */
.dropdown-content a:hover {
    background-color:  #4d83cf;
    color: black; /* Red color when hovering over dropdown items */
}

/* Display the dropdown on hover */
.menu li:hover .dropdown-content {
    display: block; 
}

/* Active item style */
.menu li.active > a {
    background-color:   #3173d0;  /* Red background for active item */
    color:  white;
    font-family: 'Open Sans', sans-serif;
}
.menu li.active1 {
    margin-left: auto;         /* Push the active1 item to the right */
    font-family: 'Open Sans', sans-serif;
}
.menu li.active1 > a {
    background-color:  #3173d0;  /* Red background for active item */
    color: RED;
    justify-content: end;
}


/* ================= MOBILE VIEW ================= */
@media screen and (max-width: 768px) {

  /* Hide the menu by default */
  .menu {
      display: none;
      flex-direction: column;
      width: 90%;                     
      max-width: 400px;               
      position: fixed;
      top: 8%;                         
      right: 5%;                       /* move menu to right side */
      background-color: #ffffff;       /* white background */
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      height: 70%;                     
      overflow-y: auto;
      z-index: 1000;
      transition: all 0.3s ease;
      padding: 10px 0;
  }

  /* Show the menu when open */
  .menu.open {
      display: flex;
  }

  /* Hamburger Menu (three small lines) */
  .menu-button {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 25px;         /* small size */
      height: 18px;
      cursor: pointer;
      position: fixed;
      top: 47px;           /* aligned with header text */
      left: 315px;
      z-index: 1001;
  }

  .menu-button span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: #0a3c6e;   /* dark blue */
      border-radius: 2px;
  }

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  flex-direction: column;
  background-color: #ffffff;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 4px;
}

/* When dropdown is open */
.dropdown-content.show {
  max-height: 400px;
  opacity: 1;
  padding: 10px 20px;
}



  /* Menu Items */
  .menu li {
      margin: 8px 0;
      text-align: left;
      list-style: none;
  }

  .menu a {
      font-size: 16px;
      color: #0a3c6e;                 /* dark blue */
      padding: 10px 20px;
      text-decoration: none;
      transition: background 0.2s ease, color 0.2s ease;
      display: block;
      border-radius: 4px;
  }

  .menu a:hover {
      background-color: #e6f0ff;       /* light blue highlight */
      color: #003366;                  /* darker blue on hover */
  }

  /* Scrollbar styling for mobile menu */
  .menu::-webkit-scrollbar {
      width: 6px;
  }

  .menu::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.2);
      border-radius: 3px;
  }
}

/* ticker */

.flash {
    background-color: rgb(233, 240, 243); /* Light blue background */
    border: 0px solid rgb(66, 200, 207); /* Light border */
    padding: 1px;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative; 
    /* font-family: 'Open Sans', sans-serif; */
    font-family: "Montserrat", serif;
    
}

marquee {
    font-size: 20px;
    font-weight: 500;
    color: rgb(66, 158, 207); /* Dark blue text for contrast */
    line-height: 1.6;
    white-space: nowrap;
    display: block;
    padding: 0;
    text-align: center;
}

marquee a {
    color: rgb(66, 158, 207); /* Blue links */
    text-decoration: none;
    margin-right: 20px;
    font-weight: 600;
}

marquee a:hover {
    text-decoration: underline;
}

marquee span {
    font-weight: bold;
    color: red;  /* Red color for important numbers */
}

marquee:hover {
    color: #4888e8; /* Dark blue when hovered */
}
.dropdown{
    position: relative; 
    display: inline-block; 
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

#openPopup{
  background-color:  #4888e8;
 
  font-family: 'Times New Roman', serif;
}

     
/*latest notification*/

 /* ===============================
   FOUR COLUMN GRID
================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 92%;
  max-width: 1320px;
  margin: 40px auto;
}

/* ===============================
   UNIFORM CARD SIZE
================================ */
.info-card {
  height: 420px;               /* 🔒 SAME HEIGHT FOR ALL */
  width: 100%;                 /* 🔒 SAME WIDTH */
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* ===============================
   HEADERS
================================ */
.panel-heading,
.card-title {
  background: #2f6fd6;
  color: #fff;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* ===============================
   BODY
================================ */
.panel-body,
.card-body {
  flex: 1;
  padding: 12px;
  overflow: hidden;
}

/* ===============================
   NEWS LIST
================================ */
.demo1 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.news-item a {
  text-decoration: none;
  color: #333;
}
.news-item a:hover {
  color: #2f6fd6;
}

/* ===============================
   WEATHER IMAGE
================================ */
.card-body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===============================
   APP CARD
================================ */
.image-card {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  box-sizing: border-box;

  max-height: 80vh;      /* card height */
  overflow-y: auto;     /* enables vertical scroll */
  overflow-x: hidden;
}

/* Image fits card */
.image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}






/* ===============================
   SCROLL FIX FOR TWITTER & WEATHER
================================ */

/* Make card body scrollable */
.info-card .card-body {
  overflow-y: auto;          /* ✅ enable vertical scroll */
  overflow-x: hidden;
}

/* Twitter embed fix */
.info-card .twitter-tweet {
  margin: 0 auto !important;
}

/* Ensure weather image scrolls if tall */
.info-card .card-body img {
  max-height: none;          /* allow image to exceed view */
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-card {
    height: auto;
  }
}


/* buttons */
 /* Home Icon Container */
#home_icon {
    display: flex;
    flex-wrap: nowrap;    /* Ensure items don't wrap */
    justify-content: space-evenly;  /* Space evenly between items */
    align-items: center;  /* Vertically align items in the middle */
     width: 100%;
    
}

/* Individual Home Feature Box */
.home_feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
    width: 18%;  /* Adjust width to make them fit in one row */
    text-align: center;
    margin: 10px;
}

/* Hover effect for home_feature */
.home_feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Icon inside each feature */
.home_feature i {
    font-size: 40px;
    color: #fff;
    background-color: #333;
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Header text style */
.home_feature h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Color Scheme for each feature */
.color1 { background-color: #4CAF50; }
.color2 { background-color: #FFC107; }
.color3 { background-color: #2196F3; }
.color4 { background-color: #e14f22; }
.color5 { background-color: #b753c9; }

.color1:hover { background-color: #45a049; }
.color2:hover { background-color: #ffb300; }
.color3:hover { background-color: #1976d2; }
.color4:hover { background-color: #aa4425; }
.color5:hover { background-color: #9134ab; }

/* Mobile Responsive */
@media (max-width: 768px) {
    #home_icon {
        flex-wrap: wrap;  /* Allow wrapping on smaller screens */
        justify-content: space-around;  /* Space items more evenly on smaller screens */
    }

    .home_feature {
        width: 45%;  /* Make each feature box take 45% of the width */
        margin: 10px;  /* Ensure spacing between items */
    }
}

@media (max-width: 480px) {
    #home_icon {
        flex-direction: column;  /* Stack items vertically on very small screens */
        justify-content: flex-start;  /* Align items to the top */
    }

    .home_feature {
        width: 90%;  /* Allow each feature to take up more width */
        margin: 10px auto;  /* Center the items on very small screens */
    }
}

/*important link*/
/* Footer container that holds both Important Links and Address */

  
  /* Links container layout */
/* Container for the footer links */
.footer-links {
    width: 100%;
    background-color: #f8f9fa; /* Light grey background */
    padding: 20px 0;
    text-align: center;
    margin-bottom: -40px;
  }
  
  /* Title for the footer links */
  .footer-title {
    font-size: 22px;
    color: black;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  /* Container that holds the individual links */
  .links-container {
    display: flex;              /* Using Flexbox for horizontal layout */
    flex-wrap: wrap;            /* Allow links to wrap to the next line if necessary */
    justify-content: center;    /* Center the links horizontally */
    gap: 15px;                  /* Adds space between links */
  }
  
  /* Styling for individual link items */
  .link-box {
    text-decoration: none;      /* Remove underline from links */
    color: #007bff;             /* Set link color */
    font-size: 14px;            /* Set font size */
    font-weight: bold;          /* Make the text bold */
    padding: 8px 15px;          /* Add padding around the link */
    border-radius: 5px;         /* Rounded corners for the link */
    transition: all 0.3s ease;  /* Smooth transition for hover effect */
  }
  
  /* Hover effect for the links */
  .link-box:hover {
    background-color: #007bff; /* Change background on hover */
    color: white;               /* Change text color to white */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Add shadow for hover effect */
  }
  
  /* Responsive Design: Adjust the layout on smaller screens */
  @media (max-width: 768px) {
    .links-container {
      justify-content: flex-start; /* Align to the left on smaller screens */
    }
  
    .link-box {
      font-size: 12px; /* Smaller font size on small screens */
      padding: 6px 10px; /* Adjust padding on smaller screens */
    }
  }
  
  
  /* Address section */
  .coloum-box {
    width: 48%; /* Occupies 48% of the container, leaving space for Links */
    max-width: 600px;
  }
  
  .title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
  }
  
  p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
  }
  
  /* Map Container */
  .map-container {
    margin-top: 15px;
  }
  
  #google-map iframe {
    border: 0;
    border-radius: 5px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column; /* Stack the columns vertically on smaller screens */
      padding: 15px;
    }
  
    .coloum-box, .coloum-box {
      width: 100%; /* Full width on smaller screens */
      margin-bottom: 20px;
    }
  
    .title {
      font-size: 18px; /* Smaller font size for mobile */
    }
  
    .link-box {
      font-size: 14px; /* Smaller font size for mobile */
      padding: 10px; /* Adjust padding for mobile */
    }
  
    p {
      font-size: 14px; /* Smaller font size for mobile */
    }
  }
  


/* Footer Container */
#twitter {
    background-color: #333; /* Dark background */
    padding: 20px 0; /* Top and bottom spacing */
    text-align: center; /* Center-align content */
    margin-top: 10px;
    margin-bottom: 0px;
  }
  
  #twitter a {
    display: inline-block; /* Inline-block for proper spacing */
    margin: 0 10px; /* Horizontal spacing between links */
    transition: transform 0.3s, filter 0.3s; /* Smooth hover effects */
  }
  
  #twitter a img {
    width: 130px; /* Adjust image size */
    height: 60px; /* Maintain uniform dimensions */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  }
  
  #twitter a:hover img {
    transform: scale(1.1); /* Slight zoom effect */
    filter: brightness(1.2); /* Brighten image on hover */
  }
  
  #twitter a:focus {
    outline: none; /* Remove focus outline */
  }
  
  #twitter::after {
    content: ""; /* Clearfix for floated elements */
    display: table;
    clear: both;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #twitter a img {
      width: 50px; /* Smaller images on smaller screens */
      height: 50px;
    }
  }
  
 /* --- Sticky Footer Fix --- */
/* html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
} */

.footer {
    margin-top: auto; /* pushes footer to bottom */
}

/* --- Footer Styling --- */
.footer {
    background: #1d3e83; 
    color: #fff;
    padding: 40px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 260px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

/* Text styling */
.footer-section p {
    color: #e2e2e2;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Links */
.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #aad1ff;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    font-size: 24px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00aaff;
    transform: scale(1.15);
}

/* Map Styling */
.map-container {
    margin-top: 15px;
}

.map-container iframe {
    width: 100%;
    border-radius: 8px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}


  /*dgp message */
  /* DGP Container Styling */
.dgp-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f4f7fc; /* Light background color */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  max-width: 1200px;
  margin: 20px auto;
}

/* DGP Box Styling */
.dgp-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #ffffff; /* White background for the box */
  border-radius: 10px; /* Rounded corners */
  overflow: hidden; /* Clip content to rounded corners */
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1); /* Deeper shadow for emphasis */
  max-width: 1000px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth interactions */
}

/* Hover Effect for DGP Box */
.dgp-box:hover {
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* DGP Image Section */
.dgp-image {
  flex: 1; /* Adjust width proportionally */
  max-width: 400px; /* Limit max width for image */
  overflow: hidden; /* Clip overflowing content */
}

.dgp-img {
  width: 100%; /* Full width of container */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Crop to fit container */
  border-right: 2px solid #ddd; /* Separate image and text */
}

/* DGP Message Section */
.dgp-message {
  flex: 2; /* Adjust width proportionally */
  padding: 20px; /* Add spacing */
  color: #333; /* Darker text for readability */
  font-family: 'Arial', sans-serif; /* Clean font */
  line-height: 1.6; /* Better text spacing */
}

/* Heading Styling */
.dgp-message h2 {
  font-size: 24px; /* Large heading size */
  font-weight: bold; /* Bold text for emphasis */
  margin-bottom: 15px; /* Space below heading */
  color: #1b1b8d; /* Dark blue for branding */
}

/* Paragraph Styling */
.dgp-message p {
  font-size: 16px; /* Standard text size */
  color: #555; /* Softer grey for readability */
  margin-bottom: 15px; /* Space between paragraphs */
  text-align: justify; /* Justify text for cleaner look */
}

/* Responsive Tweaks */
@media screen and (max-width: 768px) {
  .dgp-box {
      flex-direction: column; /* Stack image and text vertically */
  }

  .dgp-image {
      max-width: 100%; /* Image takes full width */
      border-right: none; /* Remove border for stacked layout */
      border-bottom: 2px solid #ddd; /* Add bottom border */
  }

  .dgp-message {
      text-align: center; /* Center-align text for small screens */
  }

  .dgp-message h2 {
      font-size: 20px; /* Slightly smaller heading */
  }

  .dgp-message p {
      font-size: 14px; /* Adjust text size */
  }
}

  
  




  
  
  
  
  
 
  
  
  

