/* 
   SKD Patent Services CSS - Based on Remfry & Sagar layout
   Main colors: 
   - Text: #333333, #666666
   - Accent: #c29e67 (gold)
   - Backgrounds: #f8f5f0, #ffffff
   - Dark background: #222222
   - Accent orange: #f97036
*/

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Header and Navigation */
.action-bar {
    background-color:#1f4264;
    padding: 10px 0;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .phone-numbers {
    display: flex;
    gap: 20px;
  }
  
  .phone-item, .email-address {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .fas {
    color: #FF8C00;
  }
  
  .phone-item span, .email-address span {
    color: #ffffff;
    transition: color 0.3s ease;
  }
  
  .phone-item:hover span, .email-address:hover span {
    color: #FF8C00;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .contact-info {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
    }
    
    .phone-numbers {
      flex-direction: column;
      gap: 5px;
    }
    .action-bar{
        display: none;
    }
  }
header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 55px;
}

.main-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    position: relative;
    margin: 0 12px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:hover {
    color: #c29e67;
}

/* Dropdown Icon */
.dropdown-icon {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: A5px;
    z-index: 100;
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #333;
    padding: 8px 12px;
    display: block;
    background: #fff;
    white-space: nowrap;
}

.sub-menu a:hover {
    background: #c29e67;
    color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .sub-menu {
    display: block;
}

/* Rotate dropdown icon when hovered */
.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.search-icon a {
    color: #333;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
    position: relative;
}

.mobile-menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.menu-overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: url('hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 500px;
    color: white;
}

.subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: white;
    color: #333;
}

/* Quote Section */
.quote-section {
    padding: 30px 0;
    position: relative;
}

.quote-section .container {
    display: flex;
    align-items: center;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #e0e0e0;
    line-height: 1;
}

.quote-mark.left {
    align-self: flex-start;
}

.quote-mark.right {
    align-self: flex-end;
}

.quote-content {
    flex: 1;
    padding: 0 20px;
    font-style: italic;
    color: #666;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about-content {
    display: flex;
    gap: 60px;
}

.video-container {
    flex: 1;
}

.video-placeholder {
    background-color: #f97036;
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.video-controls {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    color: white;
}

.play-btn, .mute-btn, .fullscreen-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 0.8rem;
    margin: 0 10px;
}

.timeline {
    flex: 1;
    margin: 0 10px;
    font-size: 0.7rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Source Sans Pro', sans-serif;
}
.about-text h3{
    color: #435483;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: justify;
}

.signature-block {
    margin-top: 30px;
}

.signature-img {
    height: 60px;
    margin-bottom: 10px;
}

.signatory {
    font-weight: 600;
    margin-bottom: 5px;
}

.designation {
    font-size: 0.9rem;
    color: #666;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f8f8;
    background-image: url('subtle-pattern.png');
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.services-header p {
    color: #666;
    font-size: 0.9rem;
}

.services-grid {
    margin-bottom: 40px;
}

.service-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.service-item {
    text-align: center;
    transition: all 0.3s ease;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border: 1px solid #c29e67;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-name {
    background-color: #4a4a4a;
    color: white;
    padding: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.view-all {
    text-align: center;
    margin-top: 20px;
}

.view-all a {
    display: inline-block;
    background-color: #4a4a4a;
    color: white;
    padding: 10px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.view-all a i {
    margin-left: 5px;
    font-size: 0.7rem;
}

/* Team Section */
.team {
    height: 300px;
    background: url('images/skd\ team.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.team-content {
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.team h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team p {
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.view-team-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.view-team-btn:hover {
    background-color: white;
    color: #333;
}

/* News & Events Section */
.news-events {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.6rem;
    color: #333;
}

.read-all {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #c29e67;
}

.news-item {
    margin-bottom: 30px;
}

.news-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.news-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.read-more {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #c29e67;
}

.pagination-dots {
    text-align: center;
    margin-top: 40px;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
}

.dot.active {
    background-color: #c29e67;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background-color: #f8f5f0;
    text-align: center;
}

.awards h2 {
    font-size: 1.6rem;
    margin-bottom: 50px;
}

.awards-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.award-logo {
    max-width: 150px;
}

.award-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.award-logo:hover img {
    filter: grayscale(0%);
}

/* Footer */
footer {
    background-color: #222;
    color: #888;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo img {
    margin-bottom: 20px;
    opacity: 0.7;
    height: 55px;
}
.footer-logo{
    color: #fff;
    font-size: 14px;
    text-align: justify;
    width: 60%;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h3 {
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #888;
    font-size: 0.8rem;
}

.footer-col a:hover {
    color: white;
}

.footer-newsletter h3 {
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    background-color: #333;
    color: white;
    font-size: 0.8rem;
}

.newsletter-form button {
    width: 40px;
    background-color: #c29e67;
    border: none;
    color: white;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.7rem;
}

.privacy-policy a {
    color: #888;
}

.powered-by span {
    color: #c29e67;
}

/* Side Navigation Dots */
.side-nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 90;
}

.side-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #c29e67;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.side-dot.active {
    transform: scale(1.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Modern Slider Styles */
.modern-slider {
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}
.modern-slider {
    background-image: url('./images/texture-bg1.jpg');
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .modern-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(33 69 104 / 79%); /* Blue overlay */
    mix-blend-mode: multiply; /* This creates the multiply effect */
    pointer-events: none; /* Allows clicking through the overlay */
  }

.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.prev {
    opacity: 0;
    transform: translateX(-100%);
}

.slide-image {
    width: 60%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: #ffffffda;
}

.slide-image img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.slide-content h2{
    font-weight: bold;
    color: #2e4f84;
}
.slide-content h2 span{
    color: #f73131;
}

.slide.active .slide-image img {
    transform: scale(1.1);
}

.slide-content {
    width: 40%;
    height: 100%;
    padding: 60px 40px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-tag {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s ease 0.3s, opacity 0.5s ease 0.3s;
}

.slide.active .slide-tag {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #333;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
}

.slide.active .slide-content h2 {
    transform: translateY(0);
    opacity: 1;
}

.slide-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s ease 0.7s, opacity 0.5s ease 0.7s;
}

.slide.active .slide-content p {
    transform: translateY(0);
    opacity: 1;
    text-align: justify;
}

.slide-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #c29e67;
    color: white;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s ease 0.9s, opacity 0.5s ease 0.9s, background-color 0.3s ease;
}

.slide.active .slide-btn {
    transform: translateY(0);
    opacity: 1;
}

.slide-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.slide-btn:hover {
    background-color: #a58756;
}

.slide-btn:hover i {
    transform: translateX(5px);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-slide, .next-slide {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
    color: #c29e67;
}

.slider-pagination {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pagination-dot.active {
    background-color: #c29e67;
    transform: scale(1.2);
}

/* Futuristic Services Section Styling */
.services.futuristic {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fe 0%, #eef1fa 100%);
    overflow: hidden;
}

/* Section Header */
.services.futuristic .services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.services.futuristic .services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(120deg, #333 0%, #0a365c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.services.futuristic .services-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0a365c, #4a90e2);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.services.futuristic .services-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services.futuristic .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 5;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Icon Section */
.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    z-index: 2;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1) rotate(5deg);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2, #0a365c);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover .icon-glow {
    opacity: 0.15;
    transform: scale(1.3);
}

/* Content Section */
.service-content {
    text-align: center;
    z-index: 2;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-name {
    color: #0a365c;
}

.service-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    color: #4a90e2;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-link i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover .service-link i {
    transform: translateX(3px);
}

/* Hover Effect */
.hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4a90e2, #0a365c);
    transition: height 0.4s ease;
    opacity: 0.7;
    z-index: 1;
}

.service-card:hover .hover-overlay {
    height: 100%;
    opacity: 0.03;
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #4a90e2, #0a365c);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.4);
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #4a90e2, #0a365c, #4a90e2);
    border-radius: 50px;
    z-index: -1;
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
}

.view-all-btn span {
    position: relative;
    z-index: 2;
}

.view-all-btn i {
    margin-left: 10px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Animated Background Elements */
.bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.circle, .square {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: linear-gradient(135deg, #4a90e2, #0a365c);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: float 20s infinite alternate ease-in-out;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -50px;
    animation: float 15s infinite alternate-reverse ease-in-out;
}

.square {
    border-radius: 10px;
}

.square-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation: rotate 30s infinite linear;
}

.square-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 15%;
    transform: rotate(20deg);
    animation: rotate 25s infinite linear reverse;
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(10deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Additional Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    opacity: 0;
}

.service-item.animate {
    animation: fadeInUp 0.6s forwards;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services.futuristic .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .service-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .side-nav-dots {
        display: none;
    }
    
    .services.futuristic .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services.futuristic .services-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navigation menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 100;
        padding: 80px 20px 30px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav a {
        padding: 15px 10px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    /* Dropdown submenu styles for mobile */
    .dropdown .dropdown-icon {
        transform: rotate(-90deg);
        transition: transform 0.3s ease;
    }
    
    .dropdown.open .dropdown-icon {
        transform: rotate(0deg);
    }
    
    .sub-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        padding-left: 15px;
        border-radius: 0;
    }
    
    .sub-menu.active {
        display: block;
    }
    
    .sub-menu a {
        padding: 12px 10px;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .sub-menu a:hover {
        background: #f5f5f5;
        color: #c29e67;
    }
    
    .sub-menu li:last-child a {
        border-bottom: none;
    }
    
    /* Override hover behavior on mobile */
    .dropdown:hover .sub-menu {
        display: none;
    }
    
    .dropdown:hover .sub-menu.active {
        display: block;
    }
    
    /* Slider adjustments */
    .slide {
        flex-direction: column;
    }
    
    .slide-image, .slide-content {
        width: 100%;
        height: auto;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slider-wrapper {
        height: auto;
        min-height: 650px;
    }
    
    /* Footer adjustments */
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .modern-slider {
        padding: 40px 0;
    }
    
    .slide-content {
        padding: 20px 15px;
    }
    
    .slide-tag {
        margin-bottom: 15px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .slide-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .slider-wrapper {
        min-height: 550px;
    }
    
    .services.futuristic {
        padding: 60px 0;
    }
    
    .services.futuristic .services-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .services.futuristic .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix for mobile landscape mode */
@media (max-height: 500px) and (max-width: 768px) {
    .nav-menu {
        padding-top: 60px;
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav a {
        padding: 10px;
    }
}


.awards h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.logo-slide-track {
    display: flex;
    animation: scroll 60s linear infinite;
    width: calc(600px * 18); /* 9 logos * 2 (for the clone) * 200px */
}

.logo-slide {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    height: 300px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-600px * 9)); /* 9 logos * 200px */
    }
}

/* Controls for pause on hover */
.logo-slider:hover .logo-slide-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-slide {
        /* width: 150px; */
    }
    
    .logo-slide-track {
        width: calc(350px * 18);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-350px * 9));
        }
    }
}
.footer-newsletter{
    width:30%;
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #555;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #007bff;
}
.image-placeholder img{
    width: 100%;
}


.clnt-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .clnt-carousel-heading {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
  }
  
  .clnt-logo-carousel {
    display: flex;
    animation: clnt-scroll 30s linear infinite;
    width: max-content;
  }
  
  .clnt-logo-carousel:hover {
    animation-play-state: paused;
  }
  
  .clnt-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 100px;
    margin: 0 20px;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .clnt-logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .clnt-logo-item img {
    max-width: 100%;
  }
  
@keyframes clnt-scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
  
  @media (max-width: 768px) {
    .clnt-logo-item {
      width: 150px;
      height: 80px;
      margin: 0 15px;
    }
  }