body,
html {
  font-family:'OpenSans';
  src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #ffffff;
  font-weight: 400;
  width: 100% !important;
  height: 100% !important;
}
h2,
h3,
h4 {
  font-family:'Open Sans', 'Helvetica Neue', sans-serif;
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
  color: #333;
}
#features h2{
  top:60;
}
#team b{
  right: 20;
  position: relative;
  text-align: center;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
  color: rgb(255, 255, 255);
  font-weight: 500;
}
p:hover{
  color: white;
  font-weight: 500;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: #608dfd;
  font-weight: 400;
}
a:hover,
/* a:focus {
  text-decoration: none;
  color: rgb(0, 0, 0);
} */
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: #1e7a46;
  margin-bottom: 20px;
  border: 0;
}



/* Define @font-face rule */
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype'); /* Adjust the path based on your directory structure */
}

/* Use the font */
body {
  font-family: "Open Sans"; /* Use the custom font for the entire document */
}

h1 {
  font-family: "Open Sans"; /* Use the custom font for specific elements */
}


/* Navigation */
#menu {
  padding: 5px;
  transition: all 0.8s;
}
#menu.navbar-default {
  background-color: #fff;
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#menu a.navbar-brand {
  font-family:"Open Sans";
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}
#menu.navbar-default .navbar-nav > li > a {
  font-family: "Open Sans";
  text-transform: uppercase;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
}
#menu.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, red 70%, black 100%);
  content: "";
  transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%) !important;
  content: "" !important;
  transition: width 0.2s !important;
}
.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #fff;
  border-color: #608dfd;
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: #608dfd;
}
.section-title {
  margin-bottom: 70px;
}
.section-title h2 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.section-title h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
.section-title p {
  font-size: 18px;
}






.intro {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 1s ease;
}

.dark-mode {
  background-color: #333;
  color: #fff;
}

.toggle-btn {
  position: relative;
  top: 10px;
  right: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  outline: none; /* Remove button outline */
}

.toggle-btn:hover {
  color: white;
  background-color: #0056b3; /* Change color on hover */
}

.toggle-btn:active {
  background-color: #0056b3; /* Change color on click */
}

.toggle-btn {
  font-weight:bold;
  position: fixed;
  top: 45px; /* Adjust the top position as needed */
  right: 120px; /* Adjust the right position as needed */
  z-index: 9999; /* Ensure the button is above other content */
}

/* Additional styling for the button */
.toggle-btn {
  background-color: #fff;
  color: #333;
  padding: 4px 5px !important;
  border: none;
  border-radius: 100px;
  cursor: pointer;
}

@media (max-width: 1024px)  {
  .toggle-btn {
    border-radius: 120px;
    padding: 5px 6px;
  }
}
@media (min-width:350px) and (max-width: 425px)  {
  .toggle-btn {
    border-radius: 120px;
    padding: 5px 6px;
    right: 90px;
    top: 40px;
  }
}
@media (max-width: 430px)  {
  .toggle-btn {
    border-radius: 120px;
    padding: 5px 6px;
    right: 90px;
    top: 40px;
  }
}
.toggle-btn.dark-mode {
  background-color: #333;
  color: #fff;
}


/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  transition: background-color 0.5s, color 0.5s;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

/* Light Mode Styles */
.intro {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f0f0f0;
  color: #333;
}

.intro h1 {
  font-size: 2.5em;
}



/* About Styles */
.about {
  padding: 40px 20px;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.2em;
}

/* Features Styles */
.features {
  padding: 40px 20px;
}

.features h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.features ul {
  list-style-type: none;
  padding: 0;
}

.features li {
  font-size: 1.2em;
  margin-bottom: 10px;
}

/* Projects Styles */
.projects {
  padding: 40px 20px;
}

.projects h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.projects ul {
  list-style-type: none;
  padding: 0;
}

.projects li {
  font-size: 1.2em;
  margin-bottom: 10px;
}

/* Contact Styles */
.contact {
  padding: 40px 20px;
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.2em;
}

.contact form {
  margin-top: 20px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact button {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  background-color: #ffcc00;
  color: #333;
  cursor: pointer;
}

.contact button:hover {
  background-color: #ffaa00;
}












@media (min-width:350px) and (max-width:425px) {
  .btn-custom{
    font-size: 24px;
    right: 70;
    position: relative;
  }
  
}
@media (min-width:350px) and (max-width:425px) {
  #contact .btn-custom{
    font-size: 24px;
    right: 0;
    position: relative;
  }
  
}
@media screen and (max-width:430px) {
  .btn-custom{
    font-size: 24px;
    right: 0;
    position: relative;
  }
  #contact .btn-custom{
    font-size: 13px;
    right: 0;
    position: relative;
  }
  
}

@media screen and (max-width:350px) {
  .btn-custom{
    font-size: 24px;
    right: 84;
    position: relative;
  }
}











/* *************************************************** asjmsjsjksnmfdksjdngkjsdfngkjfngkdjfsgndflgndflgkjnsrlgjfg*/
.btn-custom {
  font-family:"Open Sans";
  text-transform: uppercase;
  color: #fff;
  background-color: #004792;
  background-image: linear-gradient(to right, #0a59ad 0%, #010a57 100%);
  padding: 14px 34px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.5s linear;
  border: 0;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: #fff;
  background-image: none;
  background-color: #010a57;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}


/* Header Section */
@keyframes changeBackground {
  0%, 20% { background-image: url('../img/img14.jpg'); }
  25%, 45% { background-image: url('../img/img16.jpg'); }
  50%, 70% { background-image: url('../img/img18.jpeg'); }
  75%, 100% { background-image: url('../img/img11.jpg'); }
  
}

.intro {
  display: table;
  height: 100%;
  width: 100%;
  padding: 0;
  background-color: #e5e5e5;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  animation: changeBackground 10s infinite;
}

.intro h1 {
  font-family: "Open Sans";
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
.intro h1 span {
  font-weight: 800;
  color: #5ca9fb;
}
.intro p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}
header .intro-text {
  padding-top: 350px;
  padding-bottom: 200px;
  text-align: center;
}


/* Features Section */
#features {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #DCF2F1;
}
#features i.fa {
  font-size: 38px;
  transition: all 0.5s;
  color: #fff;
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 30px 0;
  border-radius: 50%;
  background: linear-gradient(to right, #0a59ad 0%, #010a57 100%);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}


/* About Section */
#about {
  padding: 100px 0;
}
#about h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#about h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

#about h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}
#about .about-text li {
  margin-bottom: 6px;
  margin-left: 6px;
  list-style: none;
  padding: 0;
  font-size: 15px;
}
#about .about-text li:before {
  content: "\f00c";
  font-family:"Open Sans";
  color: #5ca9fb;
  font-size: 11px;
  font-weight: 300;
  padding-right: 8px;
}
  
#about img {
  width: 620px;
  margin-top: 10px;
  background: #fff;
  border-right: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
}
#about p {
  line-height: 24px;
  margin: 30px 0;
  text-align: justify;
}

@media (max-width:1024px) {
  #about p {
    text-align: justify;
  }
  
}
/* Projects Section */
#projects {
  padding: 40px 0;
  background: linear-gradient(to right, #7FC7D9 0%, #6cbbcf 100%);
  color: #fff;
}
#projects .projects-desc {
  margin: 10px 10px 20px;
}
#projects h2 {
  color: #fff;
}
#projects .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#projects i.fa {
  font-size: 42px;
  display:inline-block;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: linear-gradient(to right, #0a59ad 0%, #010a57 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
#projects h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #fff;
}
#projects p {
  color: rgba(255, 255, 255, 0.75);
}
#projects .projects-desc {
  margin-bottom: 40px;
}
/* Team Section */
#team {
  padding-top: 50px;
  padding-bottom: 0px;
}
#feature{
  padding: 100px 0;
}
#team h4 {
  margin: 5px 0;
}

#team .thumbnail {
  background: transparent;
  border: 0;
}
#team .thumbnail .caption {
  padding: 10px 0 0;
  color: #888;
}


#team .team-img {
  width: 100%; /* Default to 100% on mobile for responsiveness */
  max-width: 240px; /* Limit the max width for the images */
  height: auto; /* Ensure the image keeps its aspect ratio */
  margin-bottom: 20px; /* Add some margin below images for spacing */
}

/* Small devices (portrait tablets and below) */
@media (max-width: 576px) {
  #team .team-img {
    width: 80%; /* Make images smaller on smaller screens */
    max-width: 200px; /* Further reduce max width */
  }
}

/* Medium devices (landscape tablets and small laptops) */
@media (min-width: 577px) and (max-width: 768px) {
  #team .team-img {
    width: 70%; /* Slightly smaller on medium screens */
    max-width: 220px; /* Adjust max width */
  }
}

/* Large devices (laptops and desktops) */
@media (min-width: 769px) and (max-width: 1200px) {
  #team .team-img {
    width: 240px; /* Standard size for laptops */
    max-width: 240px;
  }
}

/* Extra Large devices (large desktops) */
@media (min-width: 1201px) and (max-width: 1800px) {
  #team .team-img {
    width: 250px; /* Slightly larger images for larger desktops */
    max-width: 250px;
  }
}

/* Ultra Large devices (4K screens and large monitors) */
@media (min-width: 1801px) {
  #team .team-img {
    width: 300px; /* Larger images for 4K and large monitors */
    max-width: 300px;
  }
}




@media (min-width: 450px) {
  #contact {
    height: 1200px;
  }
}
@media (max-width: 1440px) {
  #contact {
    top: 140px !important;

  }
}


/* Contact Section */
#contact {
  padding: 40px 0 60px;
  background: linear-gradient(to right, #365486 0%, #202e47 100%);
  color: rgba(255, 255, 255, 0.75);
  top: 145px;
  position: relative;
  height: 700px;
}


#contact .section-title {
  margin-bottom: 40px;
}
#contact .section-title p {
  font-size: 16px;
}
#contact h2 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 30px;
}
#contact h3 {
  color: #fff;
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: 400;
}
#contact form {
  padding-top: 20px;
}
#contact .text-danger {
  color: #cc0033;
  text-align: left;
}
#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid #fff;
}
#contact .btn-custom:hover {
  color: #1f386e;
  background: #fff;
}
label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  float: left;
}
#contact .form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #444;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
#contact .form-control:focus {
  border-color: #999;
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
  color: #777;
}
.form-control:-moz-placeholder {
  color: #777;
}
.form-control::-moz-placeholder {
  color: #777;
}
.form-control:-ms-input-placeholder {
  color: #777;
}
#contact .contact-item {
  margin: 20px 0;
  position: relative;
  bottom: 70px;
}
#contact .contact-item span {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
  display: block;
}
#contact .contact-item i.fa {
  margin-right: 10px;
}
#contact .social {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 50px;
  margin-top: 50px;
  text-align: center;
}
#contact .social ul li {
  display: inline-block;
  margin: 0 20px;
}
#contact .social i.fa {
  font-size: 22px;
  width: 48px;
  height: 48px;
  padding: 12px 0;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
#contact .social i.fa:hover {
  color: #7FC7D9;
  background: #fff;
}

/* Vibrant circular gradient background */
.page-background {
  background: radial-gradient(circle at top left, #0f1035 0%, #1b1b3a 40%, #3a3a5a 100%);
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

/* Optional floating circles */
.page-background::before,
.page-background::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 20s infinite;
}

.page-background::before {
  width: 400px;
  height: 400px;
  background: #ffffff;
  top: 10%;
  left: 5%;
}

.page-background::after {
  width: 300px;
  height: 300px;
  background: #ccccff;
  bottom: 10%;
  right: 10%;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}







.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px); /* Blurs the background */
  z-index: 1000; /* Ensures it appears above other elements */
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* You can add additional styles as needed */


/* Footer Section*/
#footer {
  background: #0F1035;
  padding: 30px 0;
  font-weight: bold;

}
#footer p {
  color: #ffffff;
  font-size: 14px;
}
#footer a {
  color: #7FC7D9;
}
#footer a:hover {
  border-bottom: 2px solid #7FC7D9;
}



@media (max-width: 768px) {
  #about img {
    margin: 50px 0;
  }
}

.checkbox{
  height: 17px;
  width: 17px;  
  top: 15px;
  left: 30px;

}

/* Dark Mode Styles for Features Section */
.dark-mode #features, 
.dark-mode #features h2,
.dark-mode #features h3 {
  background: #1a1a1a;
  color: #fff;
}

.dark-mode #features i.fa {
  color: #fff;
  background: linear-gradient(to right, #0a59ad 0%, #010a57 100%);
  box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.05);
}


/* Dark Mode Styles for Projects Section */
.dark-mode #projects {
  background: #333;
  color: #fff;
}

.dark-mode #projects .projects-desc {
  color: rgba(255, 255, 255, 0.75);
}

.dark-mode #projects h2,
.dark-mode #projects h3 {
  color: #fff;
}

.dark-mode #projects .section-title h2::after {
  background: rgba(255, 255, 255, 0.3);
}

.dark-mode #projects i.fa {
  color: #fff;
  background: linear-gradient(to right, #0a59ad 0%, #010a57 100%);
  box-shadow: 10px 10px 10px rgba(255, 255, 255, 0.05);
}

.dark-mode #projects p {
  color: rgba(255, 255, 255, 0.75);
}

/* Dark Mode Styles for Contact Section */
.dark-mode #contact {
  background:black;
  color: rgba(255, 255, 255, 0.75);
}

.dark-mode #contact .section-title {
  color: #fff;
}

.dark-mode #contact .section-title p {
  color: rgba(255, 255, 255, 0.75);
}

.dark-mode #contact h2 {
  color: #fff;
}

.dark-mode #contact .section-title h2::after {
  background: rgba(255, 255, 255, 0.3);
}

.dark-mode #contact h3 {
  color: #fff;
}

.dark-mode #contact .text-danger {
  color: #cc0033;
}

.dark-mode #contact .btn-custom {
  color: #1f386e;
  background: #fff;
  border-color: #fff;
}

.dark-mode #contact .form-control {
  color: #444;
  background-color: #fff;
  border-color: #ddd;
}

.dark-mode #contact .form-control:focus {
  border-color: #999;
}

.dark-mode #contact .contact-item span {
  color: rgba(255, 255, 255, 1);
}

.dark-mode #contact .social i.fa {
  color: #fff;
  border-color: #fff;
}

.dark-mode #contact .social i.fa:hover {
  color: #7FC7D9;
  background: #fff;
}

/* Dark Mode Styles for Footer Section */
.dark-mode #footer {
  background:#333;
  color: white;
  font-weight: bold;

}

.dark-mode #footer a {
  color: #7FC7D9;
}

.dark-mode #footer a:hover {
  border-bottom: 2px solid #7FC7D9;
}

/* Dark Mode Styles for About Section */
.dark-mode #about,
.dark-mode #about h2,
.dark-mode #about h3 {
  background: #333;
  color: #fff;
}

.dark-mode #about h3,
.dark-mode #about h2::after,
.dark-mode #about .about-text li:before {
  color: white;
}

.dark-mode #about img {
  background: #fff; /* Keep background color white for the image */
}

/* Dark Mode Navigation */
.dark-mode #menu {
  background-color: #333 !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15) !important;
}

.dark-mode #menu a.navbar-brand {
  color: #fff !important;
}

.dark-mode #menu.navbar-default .navbar-nav > li > a {
  color:#ff0000 !important;
}

.dark-mode #menu.navbar-default .navbar-nav > li > a:after {
  background: linear-gradient(to right, #7FC7D9 0%, #6cbbcf 100%) !important;
}

.dark-mode .navbar-default .navbar-toggle:hover,
.dark-mode .navbar-default .navbar-toggle:focus {
  background-color: #333 !important;
  border-color: #ccc !important;
}

.dark-mode .navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: #ccc !important;
}

/* @media (max-width: 767px) {
  .toggle-btn {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 0 px;
    margin-right: -40px;
    margin-bottom: 8px;
    border-radius: 100px;
    border: none;
  }
} */


/* Small devices (phones, 576px and up) */
@media all and (min-width: 576px) {
  body {
    font-size: 14px; /* Example adjustment for font size */
  }
}

/* Medium devices (tablets, 768px and up) */
@media all and (min-width: 768px) {
  body {
    font-size: 16px; /* Example adjustment for font size */
  }
}

/* Large devices (desktops, 992px and up) */
@media all and (min-width: 992px) {
  body {
    font-size: 18px; /* Example adjustment for font size */
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media all and (min-width: 1200px) {
  body {
    font-size: 22px; /* Example adjustment for font size */
  }
}

/* navbar.css */

/* Navbar Container */
.navbar {
  background-color: transparent;
  transition: background-color 0.5s;
}

.navbar-scrolled {
  background-color: white;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  transition: margin 0.5s;
  padding-left: 5;
}

@media (min-width:1024px){
  .logo-container{
    padding-left: 10;
  }
}

@media (min-width:350px) and (max-width:425px){
  .logo-container{
    padding-left: 10;
    width: 200;
  }
}
@media (max-width:430px){
  .logo-container{
    padding-left: 10;
    width: 200;
  }
}

.logo {
  margin-right: 10px;
  transition: transform 0.5s;
}

/* Navbar Brand */
.navbar-brand {
  font-weight: bold;
  font-family: SegoeUI, Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  font-size: 24px; /* Default font size */
  transition: color 0.5s;
}

.navbar-brand.scrolling {
  color: black;
}

/* Navbar Toggle Button */
.navbar-toggle {
  transition: opacity 0.5s;
}

/* Navbar Links */
.navbar-nav li a {
  font-weight: bold;
  color: white;
}

.navbar-nav li a.scrolling {
  color: red;
}

/* Navbar Toggle Button Active State (if needed) */
.navbar-toggle.active {
  /* Add styles for active state if needed */
}

@media (min-width:1024px){
  .collapse.navbar-collapse {
    padding-right: 0;
  }
}

@media(min-width:1440px){
  .intro h1{
    font-size: 60px;
  }
}

