/* Content width controller */
.content-width {
  max-width: 1400px;
  margin: auto;
  padding: 0 15px;
}



.carousel,
.carousel-inner,
.carousel-item {
  height: 60vh;
  max-height: 450px;
}

/* ===== Home Page ===== */ /* ===== Home Page ===== */ /* ===== Home Page ===== */


/* Slider section*/ /* Slider Code */ /* Slider Code */ /* Slider Code */


.hero-slider {
  position: relative;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 400px;
}

.slide-wrapper {
  position: relative;
  height: 100%;
}

/* Background Image */
.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

/* Gradient Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,59,99,0.85),
    rgba(7,59,99,0.4),
    rgba(0,0,0,0.2)
  );
}

/* Slide without overlay ( from 2nd slide) */
.no-overlay .overlay {
  display: none;
}


/* Light overlay – for Slide 2 */
/* Ultra-light overlay – Slide 2 */
.overlay-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(100, 180, 241, 0.075),
    rgba(7,59,99,0.08),
    rgba(0, 0, 0, 0.02)
  );
}



/* Content */
.content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 600px;
  color: #fff;
  animation: fadeUp 1.2s ease forwards;
}

/* Tagline */
.tagline {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

/* Heading */
.content h1 {
  font-size: calc(var(--font-xl) + 0.5rem);
  font-weight: 800;
  margin-bottom: 15px;
}

/* Paragraph */
.content p {
  font-size: var(--font-md);
  line-height: 1.6;
  opacity: 0.95;
}

/* Button */
.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 34px;
  border-radius: 30px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,198,255,0.4);
}


.carousel-control-prev,
.carousel-control-next {
  width: 36px;          /* 50px se chhota */
  height: 36px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff !important;
  border-radius: 50%;
  opacity: 1 !important;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

/* Arrow icon size */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 14px;        /* 22px se chhota */
  height: 14px;
  filter: invert(1);
}

/* Hover */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #183B4E !important;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(0);
}

/* Position */
.carousel-control-prev {
  left: 12px;
}

.carousel-control-next {
  right: 12px;
}


/* Text Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}


/* ===== Three Column Section (Small - Large - Small) ===== */ /* ===== Three Column Section (Small - Large - Small) ===== */

/* container background is already defined */
/* container background is already defined */
.three-col-section {
  background: #ffffff; /* Light blue background */
  padding-bottom: 20px;  /* Reduced padding to keep height manageable */
}

/* Right stack: single box for both right images */
.right-box-wrapper {
  background: white;
  padding: 10px 15px; /* Reduced top and bottom padding to reduce height */
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px; /* Reduced gap between the two images */
  justify-content: center; /* Ensures the content is centered */
  height: 100%;
}

/* Styling for all three boxes (left, center, right) */
.three-box {
  height: 100%;              /* Make boxes full height */
  padding: 20px;             /* Reduced padding */
  border-radius: 15px;
  background: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 10px;       /* Reduced margin for compact look */
  
}

/* Hover effect */
.three-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Left box specific styles (border-left) */
.left-box {
  border-left: 5px solid #073b63;
}

/* Center box with blue background */
/* Center box with blue background */
/* Center box with blue background */
/* Center box styles */
.center-box {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  text-align: center;
  padding: 35px 40px;
  border-radius: 16px;
  

  /* depth */
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}


/* Heading inside center-box */
.center-box h2 {
  color: rgb(219, 215, 255);             /* Set text color to white */
  font-size: 22px;          /* Set the font size */
  margin-bottom: 12px;      /* Reduced space below heading */
  
  text-align: center;       /* Center the text */
}


/* Paragraph text styling: smaller font size and justified alignment */
.center-box p {
 
  text-align: justify; /* Justify the paragraph text */
  margin-bottom: 20px; /* Added some space below the paragraph */

  font-size: 1.08rem;  /* Slightly larger than the default font size */
  line-height: 1.8;
   font-weight: 500;
}


/* Stylish Read More text link */
.simple-link {
  color: #ffcb00;              /* Dark blue text color */
  font-size: 14px;             /* Slightly smaller font size */
  font-weight: bold;           /* Bold text */
  text-decoration: none;       /* Remove underline */
  display: inline;             /* Keep it inline with other text */
  cursor: pointer;            /* Make it look like a clickable link */
  transition: color 0.3s ease; /* Smooth transition for color change */
  background: transparent;     /* No background */
  padding: 0;                  /* Remove padding */
  border: none;                /* Remove borders */
  box-shadow: none;            /* Remove shadow */
  float: right;                /* Align to the right */
}

.simple-link:hover {
  color: #ffcb00;              /* Yellow color on hover */
}



/* Right box with brown accent removed since it's now all in one container */
.right-box {
  border-right: 5px solid #7a3b09;
}

/* Styling for the images inside right box */
.cm-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cm-image-container {
  text-align: center;
}

.cm-image.left-image {
  width: 200px;              /* Larger width for the left image */
  height: 220px;             /* Larger height */
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid #073b63;
  margin-bottom: 10px; /* Reduced margin between image and text */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.cm-image.right-image {
  width: 120px;              /* Further reduced width for right images */
  height: 140px;             /* Further reduced height */
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #073b63;
  margin-bottom: 8px; /* Reduced margin between image and text */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Name and designation styling */
.cm-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #073b63;
  margin-top: 0; /* Remove top margin */
  margin-bottom: 2px; /* Reduce bottom margin to reduce gap between name and designation */
}

.cm-designation {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  margin-top: 0; /* Remove top margin */
  margin-bottom: 0; /* Remove bottom margin */
  line-height: 1.2; /* Reduce line-height to reduce space between name and designation */
}

/* Adjust for mobile view */
@media(max-width: 768px) {
  .three-box {
    text-align: center;
  }

  .center-box {
    padding: 20px;
  }

  .right-box-wrapper {
    gap: 14px;               /* Smaller gap between images */
  }

  .cm-image.left-image {
    width: 180px;             /* Smaller left image for mobile */
    height: 200px;
  }

  .cm-image.right-image {
    width: 100px;             /* Smaller right image for mobile */
    height: 120px;
  }

  .cm-name {
    font-size: 16px;
  }

  .cm-designation {
    font-size: 13px;
  }
}






/* ===== Latest News & Tender section ===== */ /* Background color for Latest News & Tender section */

/* General responsiveness fix */


/* Background color for Latest News & Tender section */

.latest-section-bg {
  background: rgba(180,200,255,0.4);
  padding: 60px 0;
}


/* Common Box Style (used by both news & tender) */
.latest-news,
.latest-tender {
  background: linear-gradient(135deg, #0b2d4d, #073b63, #0f4c75);
  padding: 28px;
  color: white;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  min-height: 425px;   /* 🔥 increase height */
  display: flex;
  flex-direction: column;
}

/* Headings */
.latest-news h2,
.latest-tender h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.625rem;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  padding-bottom: 8px;
}

.latest-news h2::after,
.latest-tender h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Scroll containers */
.news-container,
.tender-container {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}

.news-container::-webkit-scrollbar,
.tender-container::-webkit-scrollbar {
  width: 8px;
}
.news-container::-webkit-scrollbar-thumb,
.tender-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

/* Item cards (news + tender) */
.news-item,
.tender-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, background 0.3s ease;
}

.news-item:hover,
.tender-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.icon,
.tender-icon {
  font-size: 1.5rem;
  margin-right: 12px;
}

/* Text styling */
.news-content p,
.tender-content p {
  margin: 0 0 5px;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #fff;
}

.news-content a,
.tender-content a {
  color: #ffe082;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.news-content a:hover,
.tender-content a:hover {
  color: #fff176;
  text-decoration: underline;
}

.date,
.tender-date {
  font-size: 0.8125rem;  /* 13px converted to rem */
  color: #d0d0d0;
}

/* Red NEW tag */
.new-tag,
.tender-new-tag {
  background: #e74c3c;
  color: white;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: bold;
}

/* Scroll fix */
.latest-news *,
.latest-tender * {
  pointer-events: auto !important;
}

.latest-tender {
  display: flex;
  flex-direction: column;
}

.tender-container {
  flex-grow: 1;
}





.all-tender-link {
  text-align: center;
  margin-top: 15px;
}

.all-tender-link a {
  padding: 10px 26px;
  border: 2px solid #ffe082;
  color: #ffe082;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;   /* ❌ round nahi */
  transition: all 0.3s ease;
}

.all-tender-link a:hover {
  background: #ffe082;
  color: #0b3c5d;
}



/* ===== Tender Section===== */

/* ===== Tender Section===== */


/* Wrapper for the whole tender section */
/* Section Title */
/* Section Title */
/* Section wrapper aligned with website content width */
.tender-section {
    max-width: 1200px;       /* MATCH YOUR WEBSITE CONTENT WIDTH */
    margin: 40px auto 0;     /* TOP SPACE added */
    padding: 0 20px;
}

/* Section Title */
.tender-title {
    font-size: 1.625rem;
    font-weight: 600;
    color: #1b2a3b;
    border-left: 4px solid #b45a10;
    padding-left: 10px;
    margin-bottom: 20px;
}

/* Scrollable Table Wrapper */
.tender-table-wrapper {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Table Base */
.tender-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;  /* Keeps layout aligned and tidy */
    font-size: 15px;
}

/* Header */
.tender-table thead tr {
    background: #003d6f;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1;
}

.tender-table th,
.tender-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
}

/* Even Row Background */
.tender-table tbody tr:nth-child(even) {
    background: #f8f9fc;
}

.sl-col {
    width: 60px;
}

.date-col {
    width: 150px;
    text-align: left;   /* Text left aligned */
    padding-left: 20px; /* Optional: adjust spacing for perfect look */
}


.download-col {
    width: 180px;
    text-align: left; 
    text-align: center;
}

/* Download Button */
.btn-download {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 22px;
    background: #8b2c00;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.btn-download:hover {
    background: #b3004d;
}


/Contact us page/



/* Title line */
.contact-title {
    font-size: 28px;   /* ← BIGGER TITLE */
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-bottom: 12px;
}


/* Rest of the text */
.contact-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.7;
}



/* ===== Major Minerals Section_Home Page ===== */ /* ===== Major Minerals Section_Home Page ===== */ /* ===== Major Minerals Section_Home Page ===== */ 
/* ===== Major Minerals Section_Home Page ===== */ /* ===== Major Minerals Section_Home Page ===== */ /* ===== Major Minerals Section_Home Page ===== */ 
/* ===== Major Minerals Section_Home Page ===== */ /* ===== Major Minerals Section_Home Page ===== */ /* ===== Major Minerals Section_Home Page ===== */ 





/* Service Section Styling */
.services-section {
    padding: 60px 15px;
    background: linear-gradient(to bottom, #ffffff 100%);
}

.services-section h1 {
    font-size: 30px;
    font-weight: 700;
    color: #183B4E;
    letter-spacing: 0.4px;
    margin-bottom: 50px;
    font-family: inherit;
}

/* Remove default link styling completely */
.service-link,
.service-link:hover,
.service-link:focus,
.service-link:active,
.service-link:visited {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    outline: none;
}

/* Force normal colors inside box */
.service-link h4 {
    color: #183B4E;
    text-decoration: none;
}

.service-link p {
    color: #333;
    text-decoration: none;
}

/* Service Box Styling */
.service-box{
    position: relative;
    padding: 12px;
    border-radius: 14px;
    min-height: 110px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.08);
}



/* Curved Corner Patch */
.service-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 55px;
    background: linear-gradient(135deg, #0b3a6f, #174f8c);
    border-top-left-radius: 60px;
    border-bottom-right-radius: 14px;
    z-index: 1;
}

/* Arrow icon inside patch */
.service-box::before {
    content: "➜";
    position: absolute;
    bottom: 14px;
    right: 18px;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    z-index: 2;
}



.speedup::after {
    background: linear-gradient(135deg, #fb0054, #f55b2a);
}

.settings::after {
    background: linear-gradient(135deg, #34b5bf, #210c59);
}

.privacy::after {
    background: linear-gradient(135deg, #3615e7, #44a2f6);
}

.backups::after {
    background: linear-gradient(135deg, #fc6a0e, #fdb642);
}

.ssl::after {
    background: linear-gradient(135deg, #8d40fb, #5a57fb);
}

.database::after {
    background: linear-gradient(135deg, #27b88d, #22dd73);
}



/* Row spacing */
.services-section .row {
    margin-bottom: 30px;
}

/* Text color change on hover */
.service-box:hover h4,
.service-box:hover p {
    color: #fff;
}

/* Hover Effects */
.speedup:hover {
    background-image: linear-gradient(-45deg, #fb0054 0%, #f55b2a 100%);
    cursor: pointer;
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
}

.settings:hover {
    background-image: linear-gradient(-45deg, #34b5bf 0%, #210c59 100%);
    cursor: pointer;
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
}

.privacy:hover {
    background-image: linear-gradient(-45deg, #3615e7 0%, #44a2f6 100%);
    cursor: pointer;
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
}

.backups:hover {
    background-image: linear-gradient(-45deg, #fc6a0e 0%, #fdb642 100%);
    cursor: pointer;
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
}

.ssl:hover {
    background-image: linear-gradient(-45deg, #8d40fb 0%, #5a57fb 100%);
    cursor: pointer;
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
}

.database:hover {
    background-image: linear-gradient(-45deg, #27b88d 0%, #22dd73 100%);
    cursor: pointer;
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
}

/* If you added Corundum */
.corundum:hover {
    background-image: linear-gradient(-45deg, #b31217 0%, #e52d27 100%);
    cursor: pointer;
    box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-box {
        padding: 20px;
    }

    .services-section h1 {
        font-size: 2rem;
    }
}




/* logo slider  */ /* logo slider  */ /* logo slider  */
/* logo slider  */ /* logo slider  */ /* logo slider  */
/* logo slider  */ /* logo slider  */ /* logo slider  */

/* Logo Carousel Section */
/* Logo Carousel Section */
.logo-section{
    padding:60px 30px;
    background: rgba(180,200,255,0.4);
}

.logo-section h2{
    text-align:center;
    color:#183B4E;
    font-weight:700;
    margin-bottom:30px;
}

/* Slider window */
.logo-slider{
    overflow:hidden;
    width:100%;
    position:relative;
}

/* Sliding arrows */
.slide-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    background:#ffffff;
    color:#183B4E;
    font-size:26px;
    font-weight:bold;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 4px 12px rgba(0,0,0,0.25);
    z-index:10;
    transition:0.3s ease;
}

.slide-arrow:hover{
    background:#183B4E;
    color:#ffffff;
}

.slide-arrow.left{
    left:10px;
}

.slide-arrow.right{
    right:10px;
}

/* Moving track */
.logo-track{
    display:flex;
    width:calc(300px * 10);
    animation: scroll 25s linear infinite;
}

/* Pause on hover */
.logo-slider:hover .logo-track{
    animation-play-state: paused;
}

/* Logo Card */
.logo-card{
    min-width:300px;
    background:#ffffff;
    margin:12px;
    padding:5px;                 /* minimum padding */
    border-radius:12px;
    box-shadow:0 6px 16px rgba(0,0,0,0.18);
    text-align:center;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* Make whole card clickable without changing look */
.logo-card a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    text-decoration:none;
}

/* Logo Image */
.logo-card img{
    width:100%;
    max-width:280px;
    max-height:80px;
    object-fit:contain;
}

/* Animation */
@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){
    .logo-card{
        min-width:220px;
        padding:4px;   /* mobile me bhi tight */
    }

    .logo-card img{
        max-width:160px;
        max-height:70px;
    }
}
