/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --primary-orange-dark: #E85A2B;
    --secondary-orange: #FF8C42;
    --accent-orange: #FFA500;
    --bg-white: #ffffff;
    --bg-light: #FFF5F0;
    --bg-gray: #f8f9fa;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Language Toggle */
body[data-lang="en"] .hindi-text {
    display: none;
}

body[data-lang="hi"] .english-text {
    display: none;
}

body[data-lang="en"] .english-text,
body[data-lang="hi"] .hindi-text {
    display: block;
}

a .hindi-text,
a .english-text,
.nav-menu a .hindi-text,
.nav-menu a .english-text {
    display: inline;
}

body[data-lang="en"] a .hindi-text,
body[data-lang="en"] .nav-menu a .hindi-text {
    display: none;
}

body[data-lang="hi"] a .english-text,
body[data-lang="hi"] .nav-menu a .english-text {
    display: none;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: white;
    padding: 4px 0;
    text-align: center;
}

.banner-text {
    font-size: 14px;
    font-weight: 500;
}

.banner-text strong {
    font-weight: 700;
    font-size: 16px;
}

/* Header */
.header {
    background-color: var(--bg-white);
    border-bottom: 3px solid var(--primary-orange);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.header-logo-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.company-name {
    color: var(--text-dark);
}

.site-title {
    font-size: 23px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1.2;
}

.site-subtitle {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* Navigation */
.navigation {
    background-color: var(--primary-orange);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    background-color: white;
    border: none;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 12px 15px !important;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--primary-orange-dark);
    border-bottom-color: white;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%); */
    padding: 30px 0;
    background-image: url(https://www.csk.gov.in/image/bg/bg.gif);
    background-position: center;
    background-size: contain;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    background-color: #ff6b352b;
    color: var(--primary-orange);
    border: 2px solid white;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-orange-dark);
    color: white;
    border-color: white;
}

.btn-outline-primary {
    background-color: #00000052;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    /* background-color: white;
    color: var(--primary-orange);
    border-color: white; */
        background-color: #7f2707;
    color: #ffffff;
    border-color: white;
}

/* Statistics Section */
.statistics {
    background-color: var(--bg-light);
}

.stat-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Awareness Cards */
.awareness-card {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.awareness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

.awareness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.awareness-card .btn-primary {
    background-color: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.awareness-card .btn-primary:hover {
    background-color: var(--primary-orange-dark);
    border-color: var(--primary-orange-dark);
}

/* Tips Section */
.tip-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Threats Section */
.threat-list {
    padding: 20px;
}

.threat-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-orange);
}

.threat-item h5 {
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 10px;
}

.threat-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Emergency Section */
.emergency-card {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    padding: 40px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.emergency-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.emergency-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.emergency-card .btn-primary {
    background-color: white;
    color: var(--primary-orange);
    border-color: white;
}

.emergency-card .btn-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-orange-dark);
}

/* Footer */
.footer {
    background-color: var(--primary-orange);
    color: white;
}

.footer h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--bg-light);
    text-decoration: underline;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Content Sections */
.content-section {
    padding: 0px 0;
}

.content-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-card h3 {
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 20px;
}

.content-card h4 {
    color: var(--primary-orange-dark);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
}

.content-card ul {
    padding-left: 20px;
}

.content-card li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

.alert-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-orange);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-box h4 {
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  background: #fff;
}

.section-title {
  font-weight: 700;
  font-size: 22px;
  color: #222;
}

.title-underline {
    width: 88px;
    height: 3px;
    background: #e35f2f;
    margin-top: 6px;
    border-radius: 2px;
}

/* List styling */
.custom-bullet-list {
  list-style: none;
  padding-left: 0;
}

.custom-bullet-list li {
  margin-bottom: 18px;
  padding-left: 18px;
  position: relative;
}

.custom-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #000;
}

.custom-bullet-list li a {
  font-weight: 600;
  color: #000;
  font-size: 17px;
  text-decoration: none;
}

.custom-bullet-list li a:hover {
  text-decoration: underline;
  color: #000;
}

.icon-pdf {
  width: 18px;
  vertical-align: baseline;
  opacity: 0.85;
  color: #ff0404;
}

.item-desc {
  font-size: 14px;
  color: #555;
  margin-left: 2px;
}
.read-more-btn {
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    background-color: #ff6b35;
    width: 15%;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.read-more-btn:hover {
  background: #007bff;
  color: #fff !important;
  transform: translateX(3px);
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .emergency-number {
        font-size: 2.5rem;
    }
    
    .header-logo {
        width: 40px;
        height: 40px;
    }
    
    .header-logo-large {
        width: 60px;
        height: 60px;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .site-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .tip-icon {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-orange {
    color: var(--primary-orange);
}

.bg-orange {
    background-color: var(--primary-orange);
}

.border-orange {
    border-color: var(--primary-orange);
}

/* ======================================== */

/* Visual Awareness Section */
/* .visual-awareness {
  background-color: var(--bg-light);
  position: relative;
}

.zigzag-heading {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 40px;
}

.zigzag-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  position: relative;
  display: inline-block;
}

.zigzag-heading::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-orange) 8px,
    transparent 8px,
    transparent 16px
  );
}

.awareness-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.awareness-list li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  background-color: white;
  border-left: 4px solid var(--primary-orange);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.awareness-list li:hover {
  transform: translateX(5px);
}

.circle-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 6px solid var(--primary-orange);
  border-radius: 50%;
} */

.tab1{
    margin-bottom: 30px;
    border-top: 1px solid #ff6b35;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-radius: 10px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .zigzag-heading h2 {
    font-size: 1.5rem;
  }
  .company-name{
    display: none;
  }

  .circle-image img {
    width: 160px;
    height: 160px;
  }

  .awareness-list li {
    font-size: 0.95rem;
  }
}

.item{
   
    /* color: #fff; */
    /* box-shadow: 0px 0px 10px #848484; */
    /* border-radius: 10px; */
    overflow: hidden;
    /* margin: 10px 0; */
    padding: 10px;
    
}

.caroimg {
    box-shadow: 0px 0px 6px #a5a4a4;
    border: 1px solid #c8c8c8;
    border-radius: 10px;
}
/* .owlbox{
    background: #fff;
    box-shadow: 0px 0px 17px #848484;
    border-radius: 10px;
} */
.sticky-navigation span{
    /* color: #007bff; */
}

.sticky-navigation li{
    /* border: 1px solid #e35f2f; */
    background:#ff6b35;
    border-radius: 5px;
}

.pdftext{
    background: #ffffff;
    color: #0f0e0e;
    border-radius: 10px;
    padding: 6px 6px;
    border: 2px solid #ff6b35;
}
.pdft1{
    text-decoration:none;
    color:#000 !important;
}
.pdft1:hover{
    text-decoration: underline;
    color:#000 !important;
}


.uw-widget-custom-trigger {
    border: none;
    border-radius: 70px;
    bottom: 24px;
    cursor: pointer;
    height: 70px;
    padding: 18px;
    position: fixed;
    right: 20px;
    display: flex;
    overflow: hidden;
    align-items: center;
    width: auto;
    max-width: 70px;
    transition: all 400ms;
    color: var(--color-white);
    background-color: #AE3A0F !important;
    text-align: left;
}
.second-panel {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    gap: 20px;
    justify-content: space-between;
    background-color: #FF7C3C !important;
}

/* Subfooter*/
.subfooter {
    background: #cf3b06;
}
.bottom-link {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 15px 0;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links > li {
    display: inline;
}
    .footer-links > li > a {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
    }
.footer-links > li + li::before {
    content: " | ";
    color:#fff;
}
/* ENd SUbfooter*/

/* Accessibility*/
.reginstruct {
    padding: 0;
}
.reginstruct li {
    font-size: 14px;
    list-style: none;
    text-align: justify;
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
    padding-bottom: 5px;
}
/* end accessibilty*/