/*1 st sec*/
   /* General Reset */
   
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Top Navbar */
.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 0px 50px;
    font-size: 14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    width: 20px;
    height: 20px;
}

/* Main Navbar */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 12px 20px;
    position: fixed;
    width: 100%;
    top: 40px; /* Adjusted for top navbar */
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo img {
    height: 50px;
    max-width: 100%;
    width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        height: 40px; /* Reduce size on smaller screens */
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px; /* Further reduce for mobile devices */
    }
}


/* Navigation */
.nav-links {
    display: flex;
}

.nav-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links ul li {
    margin: 0 15px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-links ul li a:hover {
    color: #007BFF;
    transform: scale(1.05);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header {
        padding: 10px 15px;
    }
    
    .nav-links ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        text-align: center;
        padding: 15px 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .topnav {
        
        text-align: center;
        
    }

    .contact-info {
        margin-bottom: 5px;
    }

    .social-icons {
        justify-content: center;
    }

    .carousel-item {
        height: 300px;
        font-size: 20px;
    }
}


/*2rd section*/
.content-section {
    padding: 40px 0;
}
.image-container img {
    width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: contain;
}
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}
.read-more:hover {
    background-color: #0056b3;
}
/*testimonials*/
/* General Styles */


.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Section Title */
.testimonial-section {
    text-align: center;
    padding: 50px 20px;
}

.testimonial-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.testimonial-section p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-size: 1rem;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
}

.client-name {
    font-weight: bold;
    color: #007bff;
    font-size: 1.1rem;
}

.client-role {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 20px;
    }
}
/*event*/
/* Main container */
.events-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    gap: 20px;
}

/* Left Side: Recent Activity */
.recent-activity {
    width: 70%;
}

.recent-card {
    display: flex;
    align-items: center;
    background-color: #E3F2FD;
    border: 1px solid #B0BEC5;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.recent-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.recent-details {
    flex: 1;
    text-align: left;
}

.event-title {
    font-weight: bold;
    font-size: 18px;
}

.event-date {
    color: #555;
    font-size: 14px;
}

.event-description {
    font-size: 14px;
    margin-top: 5px;
}

/* Right Side: Upcoming Events */
.upcoming-events {
    width: 30%;
}

.events-list {
    max-height: 200px;
    overflow-y: auto;
    background: #FFF;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar */
.events-list::-webkit-scrollbar {
    width: 8px;
}

.events-list::-webkit-scrollbar-track {
    background: #F1F1F1;
    border-radius: 8px;
}

.events-list::-webkit-scrollbar-thumb {
    background: #007BFF;
    border-radius: 8px;
}

.event-item {
    padding: 10px;
    border-bottom: 1px solid #E0E0E0;
}

.event-name {
    font-weight: bold;
}

.view-more-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
}

.view-more-btn:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .events-container {
        flex-direction: column;
    }

    .recent-activity, .upcoming-events {
        width: 100%;
    }
}
/*footer*/
/* Footer Main Container */
/*.footer {*/
/*    background: linear-gradient(to right, #141E30, #243B55);*/
/*    color: #FFFFFF;*/
/*    padding: 20px 5%;*/
/*}*/

/* Flexbox for Footer Sections */
/*.footer-container {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: space-between;*/
/*    gap: 20px;*/
/*}*/

/* Individual Footer Sections */
/*.footer-section {*/
/*    flex: 1;*/
/*    min-width: 250px;*/
/*}*/

/* Logo */
/*.footer-logo {*/
/*    width: 150px;*/
/*    margin-bottom: 10px;*/
/*}*/

/* Headings */
/*.footer-section h3 {*/
/*    font-size: 18px;*/
/*    margin-bottom: 12px;*/
/*    color: #0056b3;*/
/*}*/

/* List Styling */
/*.footer-section ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*}*/

/*.footer-section ul li {*/
/*    margin-bottom: 8px;*/
/*}*/

/*.footer-section ul li a {*/
/*    color: #BBBBBB;*/
/*    text-decoration: none;*/
/*    transition: 0.3s;*/
/*}*/

/*.footer-section ul li a:hover {*/
/*    color: #FFFFFF;*/
/*}*/

/* Newsletter Input */
/*.newsletter-input {*/
/*    width: 100%;*/
/*    padding: 10px;*/
/*    border-radius: 5px;*/
/*    border: none;*/
/*    margin-top: 5px;*/
/*}*/

/* Subscribe Button */
/*.subscribe-btn {*/
/*    background: #0056b3;*/
/*    color: #fff;*/
/*    border: none;*/
/*    padding: 10px 15px;*/
/*    margin-top: 10px;*/
/*    border-radius: 5px;*/
/*    cursor: pointer;*/
/*    width: 100%;*/
/*    font-weight: bold;*/
/*}*/

/*.subscribe-btn:hover {*/
/*    background: #0056b3;*/
/*}*/

/* Social Media Icons */
/*.social-icons {*/
/*    margin-top: 15px;*/
/*}*/

/*.social-icons a {*/
/*    display: inline-block;*/
/*    margin-right: 10px;*/
/*    color: #FFFFFF;*/
/*    font-size: 18px;*/
/*    transition: 0.3s;*/
/*}*/

/*.social-icons a:hover {*/
/*    color: #0056b3;*/
/*}*/

/* Footer Bottom */
/*.footer-bottom {*/
/*    text-align: center;*/
/*    padding: 10px;*/
/*    border-top: 1px solid #BBBBBB;*/
/*    margin-top: 20px;*/
/*    font-size: 14px;*/
/*    color: #BBBBBB;*/
/*}*/

/* Responsive Design */
/*@media (max-width: 768px) {*/
/*    .footer-container {*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*    }*/

/*    .newsletter-input {*/
/*        width: 90%;*/
/*        margin: auto;*/
/*    }*/

/*    .subscribe-btn {*/
/*        width: 90%;*/
/*        margin: 10px auto;*/
/*    }*/
/*}*/
/*contact*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.banner {
    background: url('img/contact\ us\ \(1\).jpg') center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    width: 200px;
}
.contact-form button:hover {
    background: #0056b3;
}
@media (min-width: 768px) {
    .contact-section {
        display: flex;
        gap: 30px;
    }
    .contact-info {
        width: 40%;
    }
    .contact-form {
        width: 60%;
    }
}
/*about*/
 /* Unique Banner Styling for About Page */
 .about-banner {
    width: 100%;
    height: 450px;
    background-image: url('assets/img/bg/About%20Us.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}
.about-section {
    padding: 60px 0;
}

.about-section img {
    max-width: 100%;
    border-radius: 10px;
}

.about-section h2 {
    color: #0056b3;
    font-size: 24px;
    font-weight: bold;
}

.about-section p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}
/*about journey*/
.codeshell-journey {
    background: url('img/new\ journey.jpg ') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
}

.codeshell-journey h2 {
    font-size: 24px;
    font-weight: bold;
    color: #0056b3;
}

.codeshell-journey p {
    font-size: 16px;
    color: #242222;
}

.codeshell-journey img {
    max-width: 100%;
    border-radius: 10px;
}
/*my vision */
.vision-mission {
    
    background:  #0056b3;
    color: #fff;
    text-align: center;
}

.vision-mission .content-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.4s ease-in-out, opacity 0.4s;
}

.vision-mission h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.vision-mission p {
    font-size: 14px;
    line-height: 1.6;
}

/* Animation Effects */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-in-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-in-out;
}

.vision-mission .fade-in-left,
.vision-mission .fade-in-right {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vision-mission .row {
        flex-direction: column;
    }
    
    .vision-mission .content-box {
        margin-bottom: 20px;
    }
}
/*why choose*/
.why-choose-us {
    padding: 80px 20px;
    background: linear-gradient(to right, #0056b3, #003d80);
    color: #fff;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: center;
    width: 300px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.4s ease-in-out, opacity 0.4s;
}

/* Icon Circle */
.icon-circle {
    width: 160px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 15px;
}

.icon-circle img {
    width: 35px;
    height: 35px;
}

/* Feature Content */
.feature-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 13px;
    opacity: 0.9;
}

/* Animation Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.why-choose-us .fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
}
/*team*/

/*review*/


/* Layout container */
.container-custom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 0px;
    height: 90vh;
}

/* Left Section - Review Chat (60%) */
.review-section {
    width: 60%;
    height: 100%;
    
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.chat-box {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 75vh;
    padding-bottom: 10px;
}
.chat-message {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    width: fit-content;
    max-width: 80%;
}
.user-message {
    background-color: #d1e7dd;
    align-self: flex-end;
}
.other-message {
    background-color: #f8d7da;
    align-self: flex-start;
}
.input-group {
    background: white;
    padding-top: 10px;
}

/* Right Section - Video List (40%) */
.video-section {
    width: 40%;
    height: 100%;
    overflow-y: auto;
    
    padding: 15px;
    
   
    display: flex;
    flex-direction: column;
}
.video-item {
    width: 100%;
    margin-bottom: 15px;
}
.video-thumbnail {
    width: 100%;
    height: 220px;
    border-radius: 5px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .container-custom {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    .review-section, .video-section {
        width: 100%;
        height: auto;
    }
}
.banner1 {
    background: url('assets/img/bg/Clients.gif') center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

/*portfolio style*/
/* Title Styling */
.bannerport {
    background: url('https://www.hostinger.com/tutorials/wp-content/uploads/sites/2/2022/04/web-developer-portfolio.webp ') center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}
.projects-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styling */
.projects-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Card Styling */
.project-card {
    width: 300px;
    height: 380px;
    perspective: 1000px;
    transition: transform 0.4s ease-in-out;
}

.project-card:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

/* Card Content */
.card-content {
    background: #fff;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: #007bff;
    text-align: center;
}

.card-content img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
}

.card-content h3 {
    margin: 15px 0 10px;
    font-size: 22px;
    color: #222;
}

.card-content p {
    font-size: 16px;
    color: #555;
}


/*footer*/
.footer {
    background-color: #0056b3;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1 1 250px;
  }
  
  .footer-logo {
    width: 150px;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    width: 110px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin: 8px 0;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #d1e8ff;
  }
  
  .newsletter-input {
    padding: 8px;
    width: 100%;
    max-width: 250px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
  }
  
  .subscribe-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #003e80;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .subscribe-btn:hover {
    background-color: #002d5c;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    color: white;
    margin-right: 12px;
    font-size: 20px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #d1e8ff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ffffff55;
    font-size: 14px;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      text-align: center;
    }
  
    .newsletter-input {
      width: 100%;
    }
  }